Thank you the font size worked great as for the box them off I meant like add lines on each side or around them so they look like they are in a box or seperated from each other.
Thank you the font size worked great as for the box them off I meant like add lines on each side or around them so they look like they are in a box or seperated from each other.
You can add a border: declaration to the same rule to put boxes around each link, or slightly more complex:
This will put a separator line to the left of every link after the first one.Code:#navCatTabs ul li a { color: white; font-size: 1.5em; } #navCatTabs ul li+li a { border-left: 1px solid #aabbcc; }
That worked great thank you very much!!