 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
cheshire191
Joined: 20 Mar 2006 Posts: 4
|
Posted: Mon Mar 20, 2006 11:07 am Cache problem!?! Maybe CSS |
|
|
|
what i want to do is have a text link so up like this on the index page
The Link
and when someone hovers it.
The Link
this i CAN get to work with zero problems using CSS, but when i revisit the index page. the links seemd to loose their hover trait. I assumed this was because they are being tagged as visited now.
I figured it was a cache problem so i tried including various cache refresh meta tags with no success.
Any suggestions? |
|
cheshire191
Joined: 20 Mar 2006 Posts: 4
|
Posted: Mon Mar 20, 2006 11:25 am |
|
|
|
| bump |
|
MinatureCookie
Joined: 20 Mar 2006 Posts: 68
|
Posted: Mon Mar 20, 2006 11:48 am |
|
|
|
Umm, I can't remember the actual HTML, but I remember there are 3 different types, "hover" "link" and "visited", does this help? I think you need to make the visited effect to "none" or something... No help am I?
Hope this helped |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8749 Location: Castle Pines North, CO USA
|
Posted: Mon Mar 20, 2006 11:52 am |
|
|
|
|
It usually takes more than 40 minutes to get a response in this forum, and it also helps to post your source code as well.
Also do you have your class as link, visited, hover, active?
_________________
Corey
Loud Commerce | Loud Worx | Merchant Account Blog |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8749 Location: Castle Pines North, CO USA
|
Posted: Mon Mar 20, 2006 11:55 am |
|
|
|
Without seeing the source code, it is difficult but here is something
| Code: |
a:link
{
color: #330099;
background-color: #fff;
}
a:visited
{
color: #330099;
background-color: #fff;
}
a:hover
{
color: #990000;
text-decoration: none;
background-color: #fff;
}
a:active
{
color: #330099;
background-color: #fff;
text-decoration: none;
} |
Also what DOCTYPE are you using and what browser?
_________________
Corey
Loud Info | Loud Worx | Merchant Account Blog |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|