HTML Text Coding????

  • Thread starter Thread starter Alyssa_Mulisha
  • Start date Start date
A

Alyssa_Mulisha

Guest
www.myspace.com/alyssa_mulisha

as you can see my pink links turn green when you hover above them, and the green text is underlined, I can find the code thats making it underlined!! I dont want it like that! CAN YOU TELL ME HOW TO FIX IT, I'D RATHER IT BE A STRIKETHROUGH DECORATION, HOW DO I DO THAT??

HERE IS MY TEXT AREA
.mygen { Text Properties }
table, tr, td, li, p, div { font-family:arial; color:FFFFFF; font-size:10px; }
.btext { font-family:arial; color:FFFFFF; font-size:10px; }
.blacktext10 { font-family:arial; color:6600FF; font-size:15px; }
.blacktext12 { font-family:cordia new; color:CC33CC; font-size:35px; }
.lightbluetext8 { font-family:arial; color:CC33CC; font-size:15px; }
.orangetext15 { font-family:arial; color:FFFFFF; font-size:10px; }
.redtext { font-family:arial; color:FFFFFF; font-size:15px; }
.redbtext { font-family:arial; color:FFFFFF; font-size:15px; }
.text { font-family:arial; color:FFFFFF; font-size:10px; }
.whitetext12 { font-family:arial; color:FFFFFF; font-size:10px; }
a:active, a:visited, a:link { font-family:arial; color:CC33CC; font-size:11px; }
a:hover { font-family:arial; color:22FF22; font-size:11px; }
a.navbar:active, a.navbar:visited, a.navbar:link { font-family:arial; text-decoration:strikethrough; color:CC33CC; font-size:10px; }
a.navbar:hover { font-family:arial black; color:22FF22; font-size:8px; }
a.redlink:active, a.redlink:visited, a.redlink:link { font-family:arial; color:CC33CC; font-size:10px; }
a.redlink:hover { font-family:arial; color:22FF22; font-size:10px; }
 
This is actually CSS, not HTML.
#22FF22 is green.
it's underlined because it's a link
to make it a strikethrough, add:

text-decoration: line-through;

for others: http://meyerweb.com/eric/articles/webrev/199806.html

how to use that in the line I think you want to use it in is replace "a.navbar:hover { font-family:arial black; color:22FF22; font-size:8px; } " with "a.navbar:hover { font-family:arial black; color:22FF22; font-size:8px; text-decoration: line-through;}"

And... yeah. Just work with that and you'll figure it out. <3
 
Back
Top