PDA

View Full Version : Help with a Style


snyx
Mon 5th Feb '01, 10:51pm
I need a style to add to my <head> that does this:


Link is NOT underlined UNTIL mouse over
Links are this color #FF6600


Simple stuff, can someone just throw it together for me, I have lost my txt file explaining this stuff! :(

snyx

Joe
Mon 5th Feb '01, 10:56pm
<STYLE type=text/css>
A:hover {COLOR: #FF6600; text-decoration: underline}
</STYLE>

i think :)

snyx
Tue 6th Feb '01, 1:36am
Got that working, but insted now I need a code so all my text on the page is all Arial and size 2, any ideas now? :(

Kier
Tue 6th Feb '01, 2:04am
<style type=text/css>
body {font-family: arial; font-size: 11pt}
p {font-family: arial; font-size: 11pt}
li {font-family: arial; font-size: 11pt}
td {font-family: arial; font-size: 11pt}
th {font-family: arial; font-size: 11pt}
div {font-family: arial; font-size: 11pt}
( and any other tags you fancy )
</style>

snyx
Tue 6th Feb '01, 2:40am
Like a charm man, thanks!

Kier
Tue 6th Feb '01, 3:43am
no problem :)