Jump to content

a:active


Hellusius

Recommended Posts

The a:active I used doesn't seem to have effect on the firefox browser I use.
Here is the CSS/stylesheet part I made for it

[code]a:link { color: #1099FF; background-color: transparent }
a:visited { color: #2277EE; background-color: transparent }
a:hover { color: #FF2200 ; background-color: transparent }
a:active { color: #22FF00 ; background-color: transparent  }[/code]

suggestions, or is there anything special I need to do, to have it work on all webbrowsers?
Link to comment
https://forums.phpfreaks.com/topic/15671-aactive/
Share on other sites

this is where I redirect
[code]
<html>
<head>
<title>WarcraftIII test site</title>
<link href="Stylesheet.css" rel="stylesheet" type="text/css" />
</head>
<meta>
<body>
--Codes--[/code]

and the CSS file looks like this

[code]body
{
font family: arial;
background-color:#1111DD;
color:#000000;
}


a:link { color: #1099FF; background-color: transparent }
a:visited { color: #2277EE; background-color: transparent }
a:hover { color: #FF2200; background-color: transparent }
a:active { color: green }

#NewsTitle { color:#222266 }
#NewsText  { color:#DDAA55 }[/code]

Its just odd, cause it works on the rest of the page but not in the header.php (the file in where the redirect is located)
Link to comment
https://forums.phpfreaks.com/topic/15671-aactive/#findComment-64173
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.