
October 14th, 2012, 06:27 PM
|
|
Contributing User
|
|
Join Date: Sep 2012
Posts: 112
  
Time spent in forums: 14 h 27 m 57 sec
Reputation Power: 5
|
|
ok ive got a <ul> vertical menu formatted as follows in CSS:
PHP Code:
.glossymenu{
list-style-type: none;
margin: 5px 0;
padding: 0;
width: 145px;
border: none;
border-bottom-width: 0;
}
.glossymenu li a{
background: white url(Images/glossyback.gif) repeat-x bottom left;
font: bold 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: white;
display: block;
width: auto;
padding: 3px 0;
padding-left: 10px;
text-decoration: none;
}
* html .glossymenu li a{ /*IE only. Actual menu width minus left padding of A element (10px) */
width: 120px;
}
.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}
.glossymenu li a:hover{
background-image: url(Images/glossyback2.gif);
}
How can I apply the same formatting to the text menu at the beginning of this thread?
|