Alright, I have modified everything that I can find to change the way that the text is aligned within the menu tabs.
How do I align the left to the left? Right now they're all centered within their respective tabs.
Alright, I have modified everything that I can find to change the way that the text is aligned within the menu tabs.
How do I align the left to the left? Right now they're all centered within their respective tabs.
Hi dcolumbus-
There is no text-align applied to the menu items only padding that centers the text. You could adjust the padding to give the illusion of being aligned left.
.sf-menu a {
padding:9px 30px 9px 5px;
}
or give the list item width and text-align values like:
.sf-menu li {
text-align:left;
width:150px;
the latter could be problematic if the text overruns the width.
-Gene
This topic has been closed to new replies.