Hellusius Posted July 26, 2006 Share Posted July 26, 2006 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? Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/ Share on other sites More sharing options...
just-j Posted July 26, 2006 Share Posted July 26, 2006 try this [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] Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-63944 Share on other sites More sharing options...
just-j Posted July 26, 2006 Share Posted July 26, 2006 nevermind... i just tried it and dosent help in FF in IE with or without the ; works fine i would like to know the answer to this one too!! Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-63947 Share on other sites More sharing options...
moberemk Posted July 26, 2006 Share Posted July 26, 2006 What's with the space between the colour value and the closing semicolon. Also, I think that I remember reading something about a specific order for that... but I don't quite remember it. Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-63958 Share on other sites More sharing options...
Hellusius Posted July 26, 2006 Author Share Posted July 26, 2006 oddd, in the rest of the website it works, but just not the header part in which I directed towards to the stylesheet.very odd Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-64004 Share on other sites More sharing options...
AndyB Posted July 26, 2006 Share Posted July 26, 2006 [quote author=moberemk link=topic=101900.msg403784#msg403784 date=1153915560]Also, I think that I remember reading something about a specific order for that... but I don't quite remember it.[/quote][b]L[/b]o[b]V[/b]e [b]HA[/b]te - link, visited, hover, active Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-64014 Share on other sites More sharing options...
Hellusius Posted July 26, 2006 Author Share Posted July 26, 2006 so any suggestions on what could cause this? Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-64031 Share on other sites More sharing options...
nogray Posted July 26, 2006 Share Posted July 26, 2006 I tried the code you posted on top, and it seems to work in IE, FF, and Opera. Not sure why you having a problem. Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-64149 Share on other sites More sharing options...
Hellusius Posted July 26, 2006 Author Share Posted July 26, 2006 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) Quote Link to comment https://forums.phpfreaks.com/topic/15671-aactive/#findComment-64173 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.