PDA

View Full Version : fast css help


Mike Armas
12-26-2005, 10:43 AM
I am trying to keep a link the same after it's been visited.

when i put my mouse over it. I want it to change to 88A87A

When i click it i want it to change to 88A87A

When i have been to that page i want it to change to FFFFFF

And the link started out as FFFFFF

And i want it to loop.


So i want it to always have the mouse over working. When i do it it never works it says this color FFFFFF and never changes to 88A87A when i put my mouseover it again.

jcnelson
02-25-2006, 01:28 AM
Can you post your css code here so we can take a look at it?

If you haven't already done it, grab the runtime.css from your public_html file and rename it to custom.css and upload it to your template folder.

Something like this added to your new custom.css file should work.

<style type="text/css">
<!--
a:link {color: #FFFFFF; text-decoration: none; }
a:active {color: #FFFFFF; text-decoration: none; }
a:visited {color: #FFFFFF; text-decoration: none; }
a:hover {color: #88A87A; text-decoration: none; }
-->
</style>