Hey guys,
Heres my situation. Created a menu thats styled with a CSS file, and the menu is in two rows. Is there anyway i can put a white space between the top row and bottom row?
Unfortunately i had the menu in one row with normal sized font and the project manager bitched enough that i now have to make the font bigger, a lot bigger and it's completely screwed the layout of my menu up and this women will not listen to reason and she has the final say so....I gotta do what she wants.
Because the font is so big it's pushed the menu into two rows, and she now wants a white space between the top and bottom row.
Does anyone have any suggestions on how i can do this? I'm ASSuming that I can do this in my CSS file.
here is the CSS code
CODE
.horizontalcssmenu ul{
margin: 0;
padding: 0;
max-width: 200;
list-style-type: none;
}
/*Top level list items*/
.horizontalcssmenu ul li{
position: relative;
display: inline;
float: left;
}
/*Top level menu link items style*/
.horizontalcssmenu ul li a{
display: block;
width: 155px; /*Width of top level menu link items*/
padding: 2px 8px;
border: 1px solid #202020;
border-left-width: 0;
text-align: center;
text-decoration: none;
background: url(untitled.bmp) center center repeat-x;
color: white;
font: 12px Tahoma;
}
/*2nd level menu*/
.horizontalcssmenu ul li ul{
left: 0;
top: 0;
position: absolute;
display: block;
visibility: hidden;
z-index: 100;
}
/*2nd level menu list items*/
.horizontalcssmenu ul li ul li{
display: inline;
float: none;
}
/* 2nd level menu links style */
.horizontalcssmenu ul li ul li a{
width: 135px; /*width of sub menu levels*/
font-weight: normal;
padding: 2px 5px;
background: url(untitled1.bmp) center center repeat-x;
border-width: 0 1px 1px 1px;
}
.horizontalcssmenu ul li a:hover{
background: url(untitled1.bmp) center center repeat-x;
}
.horizontalcssmenu ul li ul li a:hover{
background: url(untitled2.bmp) center center repeat-x;
}