View Full Version : bolding in css...


chelz0r
08-02-2006, 10:34 PM
i wanted to know if there was a way that you could change the properties of just the things that are bold on a website without having to do it manually everytime (with html).

like is there a css property to do that or what?

i know you can do it on myspace and such but they have a certain name for their bolded things (.standard b or something to that nature).

any help would be great appreciated. XD

bourdelson
08-02-2006, 11:14 PM
Sure, in your style sheet, just add this:

b, strong {
color:#000000;
font-weight:bold;
}

and add in whatever else you want to in order to customize your bolded items. :)