Hover Codes, Keep all my Links the same size as my normal text. |
![]() ![]() |
Hover Codes, Keep all my Links the same size as my normal text. |
Aug 7 2007, 04:46 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Aug 2007 Member No: 557,028 |
Ok, So I have written a very.. impressive? About Me, on MySpace. Its all <small>written like this(AKA SMALL).</small>
Only, the links are normal sized and BLUE! I dont want them to stand out, so does anyone know the code? I have got this code, and need to fill it in... any know how to do it. This is the code im currently using, like the hover codes. CODE <style type="text/css"> <!-- A:visited {color:COLOR; text-decoration: none;} A:link {color:COLOR; text-decoration: none;} A:active {color: COLOR; text-decoration: underline;} A:hover {cursor: HAND; color: BLUE; text-decoration: underline;} //--> </style> thanks! |
|
|
|
| *The Markster* |
Aug 7 2007, 04:49 PM
Post
#2
|
|
Guest |
Change your stylesheet to this instead:
CODE <style type="text/css"> small, small a { font-size: 7pt !important; } a, a:link, a:visited, a:active { text-decoration: none; } a:hover { text-decoration: underline; } </style> If the 'font-size' property of 7pt doesn't work for you, try another number. |
|
|
|
Aug 7 2007, 04:51 PM
Post
#3
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Aug 2007 Member No: 557,028 |
Thanks! But the links are still blue.... anyway i can get them turn to black, my oringinal text colour?
|
|
|
|
Aug 7 2007, 04:51 PM
Post
#4
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Aug 2007 Member No: 557,028 |
and making the font "Trebuchet MS" ?
|
|
|
|
| *The Markster* |
Aug 7 2007, 04:53 PM
Post
#5
|
|
Guest |
Sure. Use this instead:
CODE <style type="text/css">
small, small a { font-size: 7pt !important; } small a { font-family: 'Trebuchet MS', sans-serif !important; color: 000000 !important; } a, a:link, a:visited, a:active { text-decoration: none; } a:hover { text-decoration: underline; } </style> |
|
|
|
Aug 7 2007, 05:01 PM
Post
#6
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Aug 2007 Member No: 557,028 |
Well it worked for one link, but not the others.
|
|
|
|
| *The Markster* |
Aug 7 2007, 05:05 PM
Post
#7
|
|
Guest |
Hmm, could you kindly link me to your MySpace?
|
|
|
|
Aug 7 2007, 05:05 PM
Post
#8
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Aug 2007 Member No: 557,028 |
Its private, but i can change that. its www.myspace.com/baby_buggit
|
|
|
|
| *The Markster* |
Aug 7 2007, 05:07 PM
Post
#9
|
|
Guest |
Oh okay, thanks. Use this instead:
CODE <style type="text/css">
small, small a, a { font-size: 7pt !important; } a, small a { font-family: 'Trebuchet MS', sans-serif !important; color: 000000 !important; } a, a:link, a:visited, a:active { text-decoration: none; } a:hover { text-decoration: underline; } </style> |
|
|
|
Aug 7 2007, 05:24 PM
Post
#10
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Aug 2007 Member No: 557,028 |
Thanks!! xx
|
|
|
|
| *The Markster* |
Aug 7 2007, 05:39 PM
Post
#11
|
|
Guest |
You're welcome.
|
|
|
|
![]() ![]() |