View Full Version : Bold not working when underline is also used


stacecraft
10-12-2005, 12:21 AM
Using CSS I've made it so that everything bold is pink. However, when I use the bold and underline tags together the text is underlined but it in the regular font color instead of being pink and bold. What do I do? Is there a way to set the attributes for all underlined things to be bold and pink in the same way that I've made evrything bold be pink?

Monkey Bizzle
10-12-2005, 12:57 AM
can we see a link to your site please?

pb&j
10-12-2005, 07:45 AM
something like this perhaps?

u {
font-weight: bold;
color: pink;
}

stacecraft
10-12-2005, 02:33 PM
Yep, it worked, thanks a lot! I figured it would be something like that :)

pb&j
10-13-2005, 12:19 AM
ok. good luck!