Using different font settings for hyperlinks on the same page.

grooveagent

New Member
Hey all,

I have a web page where I need to have two different font sizes for two different hyperlinks.

In the page properties, the default hyperlink settings seem to override anything try to do to the hyperlink font size in the page.

Does anyone know how to have two different settings for hyperlinks on a web page?

FWIW, I'm using Dreamweaver.

Thanks in advance.
 

adx

New Member
Like this you mean?

Code:
#randomcell a {
 font-size: 10px;}

#anothercell a {
 font-size: 20px;}

This should change the font size of a link depending on which cell it's in.
 
Top