split your CSS rules for ul and li only put display: inline on the li portion.
Is this what you mean?
Code:
}
.chromestyle ul {
}
.chromestyle li{
display: inline;
}
.chromestyle ul a{
color: #fcfefe ;
padding: 5px 18px;
margin: 0;
text-decoration: none;
border-right: 1px solid #8F9191 ; /*THEME CHANGE HERE*/
}
.chromestyle li a{
color: #fcfefe ;
padding: 5px 18px;
margin: 0;
text-decoration: none;
border-right: 1px solid #8F9191 ; /*THEME CHANGE HERE*/
}
.chromestyle li a:hover{
background: #EAEAE8 url("button/button6_end.gif") center center repeat-x;
}
.chromestyle ul a:hover{
background: #EAEAE8 url("button/button6_end.gif") center center repeat-x;
}
.chromestyle ul a[rel]:after{ /*HTML to indicate drop down link*/
content: "";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}
.chromestyle li a[rel]:after{ /*HTML to indicate drop down link*/
content: "";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
Bookmarks