If I modify the code as follows, I get bad results in FF3 without even testing other browsers:
Code:
/*Left Div background taken care of by Wrapper*/
#left{
width:269px;
float:left;
clear:left;
padding:0px 0px 5px 20px;
margin:0px;
text-align:left;
}
ul#nav li{
list-style:none;
background:url(leftbutton.png) top left no-repeat;
color:#003366;
display:inline-block;
/* height:21px; */
padding:0px 15px;
width:240px;
margin: 5px 0px 5px 0px;}
ul#nav li ul li{
list-style:none;
width:200px;
background:none;
padding:1px 0px;
margin:0px;
/*height:13px;*/
/*margin-left:-25px;*/
color:#003366;}
/*Vert Menu - Style for Arrow on Button*/
ul#nav .arrow{
background:url(images/leftbuttonarrow.png) left no-repeat;}
/*Vert Menu - Removes unnecessary padding from top button*/
ul#nav .top{
margin-top:0px;}
/*Vert Menu - Styles Non-Link Text*/
ul#nav .text{
height:auto;
display:block;
margin:10px 0px 0px -25px;
padding:3px 0px;}
/*Vert Menu - Link Colors & Decoration*/
ul#nav a:link{
color:#000066;
display:block;
height:12px;}
ul#nav a:visited{
color:#000066;}
ul#nav a:active{
color:#000066;}
ul#nav a:hover{
text-decoration:none;
color:#0066CC;}
/*Vert Menu - Search Box*/
.search{
background: url(images/searchbox.gif) no-repeat;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color:#666;
width:171px;
float:left;
clear:right;
padding:3px 0px 0px 5px;
margin:2px 0px 3px 0px;
height:21px;
border:none;
overflow:hidden;}
/*Vert Menu - Search Button*/
input.search{
width:20px;
height:22px;
padding:3px;
margin:5px 0px 3px 0px;
float:left;
clear:right;
background:url(images/searchbutton.png) no-repeat;}
I also have an issue if I modify it as below as well:
Code:
#left{
width:269px;
float:left;
clear:left;
padding:0px 0px 5px 20px;
margin:0px;
text-align:left;
}
/*Left Vertical Menu Styling*/
ul#nav{
width:250px;
margin:0px;
padding-left:7px;}
/*Vert Menu - Category Styling*/
ul#nav li{
list-style:none;
background:url(leftbutton.png) top left no-repeat;
color:#003366;
display:inline-block;
/* height:21px; */
padding:0px 15px;
width:240px;
margin: 5px 0px 5px 0px;}
/*Vert Menu - Style for Arrow on Button*/
ul#nav .arrow{
background:url(images/leftbuttonarrow.png) left no-repeat;}
/*Vert Menu - Removes unnecessary padding from top button*/
ul#nav .top{
margin-top:0px;}
/*Vert Menu - Gives space between button and links*/
ul#nav li ul {
display:inline-block;
margin-top:10px;}
/*Vert Menu - Styles Links & Content*/
ul#nav li ul li{
list-style:none;
width:200px;
background:none;
padding:1px 0px;
margin:0px;
/*height:13px;*/
/*margin-left:-25px;*/
color:#003366;}
I am feeling very frustrated. This should be a simple thing to style. It's a very basic unordered list and I'm not including a dropdown function or any Javascript. I just am not sure what I'm doing wrong here.
My goal is for the list to appear as shown in the image below in IE & FF2, which it does in FF3 with the CSS I included in my first post of this thread:
I really appreciate your help.
Thanks
Kristin