PDA

View Full Version : Question...


Blindchild02
10-12-03, 11:37 AM
Ok...

www.xamira.net/forums
look at the footer (bottom) it has links HOME | FORUMS | USER CP, etc...

and i had to make them white, cuz my link color is a blue... but when i made it white it doesnt have a rollover color... how do i make it rollover orange?

i dunno if this is css, but i think it is :S plz help!

Henry
10-13-03, 06:15 AM
a:hover{ color: orange; }

Blindchild02
10-13-03, 06:41 AM
that goes.... before the text, or wut?

jewellgr
10-13-03, 09:56 AM
that goes.... before the text, or wut?

I looked at your code and I saw your links were in a <div> tag.
So what you want to do is change that to:

<div class="footer" align="center">

Then in the head of your html code do this:

<style>
.footer a:link,a:visited {color:white}
.footer a:hover {color: orange}
</style>

This also means you can get rid of the <font color="#FFFFFF"> tags

Blindchild02
10-13-03, 02:29 PM
lmao, oh man. i have no idea how to do any of that, if i paste my whole thing, could u edit it for me? plz :D

Blindchild02
10-13-03, 05:33 PM
w00p NM, i got it :D thanks

EDIT: Nevermind... :| when a:visited is on there, then it messes up the forums, it makes the visited links white. :(

EDIT 2: haha i Fixed it...

it was like this...

<style>
.footer a:link,a:visited {color:white}
.footer a:hover {color: orange}
</style>

wut i did was this.

<style>
.footer a:link {color: white}
.footer a:visited {color: white}
.footer a:hover {color: orange}
</style>

so now it works :D

ps. thanks dude!

Henry
10-14-03, 04:57 AM
hahahaha sorry i should've explained it more my fault

Blindchild02
10-14-03, 06:38 AM
lol its koo :D ifigured it out and added it to the header too