PDA

View Full Version : "Bold" - New or Unvisited Links / "Not Bold" - Visited Links


gr8rcake
10-07-2008, 04:45 AM
I'd like to modify my style's CSS so that in the "Body" section, so that "Normal Links" are bold, and "Visited Links" are normal.

I know I need to use "font-weight:bold" somewhere, but don't know where and how to insert it in the menu boxes.

Any help would be appreciated.

Gray Matter
10-09-2008, 02:39 PM
a:link { font-weight: bold; }
a:visited { font-weight: normal; }

gr8rcake
10-09-2008, 03:35 PM
Thanks, I found a more specific solution:

Admin CP -> Styles & Templates -> Style Manager -> Main CSS (in the menu) -> Body

In the Body class, under Normal Links CSS, in the Text Decoration box enter the custom markup.

; font-weight:bold

The ";" is important as it breaks out of the text-decoration attribute so you can set the font-weight. Without it your CSS looks like this, which is an unsupported combination.

text-decoration: font-weight: bold;