Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

isus

macrumors regular
Original poster
Jan 13, 2004
182
1
if you want to laugh at stupid people who want to major in comp sci, go to www.onlyinkenya.com.

today's topic: the ppc processor and it's ability to run x86 apps.
tomorrow: the prototype ram which is very rare and valuable, but is only pc100.
the day after: on why 400gb doesn't even draw a gasp anymore.
 
:(

anyway, i have a question:
my css has it so that the links are normally gray, but turn white when you hover... however, once you 'visit', the link, it will not go back to turning white on hover... any help? i asked some people, but there were no real leads with that.
 
the first thing that i would do is try following the standard order for links in stylesheets...
you have this...
Code:
a:link {background:black; color:white; text-decoration:none}
a:hover {background:white; color:navy; text-decoration:none}
a:active {background:black; color:white; text-decoration:none}
a:visited {background:navy; color:white; text-decoration:none}

the order should be link, visited, hover, active... so it should look like this...
Code:
a:link {background:black; color:white; text-decoration:none}
a:visited {background:navy; color:white; text-decoration:none}
a:hover {background:white; color:navy; text-decoration:none}
a:active {background:black; color:white; text-decoration:none}

and last... why are you making fun of people who are just learning about computer science? lighten up a little--everyone has to start somewhere--watch out, because the idiots will rule the world
 
mnkeybsness said:
the first thing that i would do is try following the standard order for links in stylesheets...
you have this...
Code:
a:link {background:black; color:white; text-decoration:none}
a:hover {background:white; color:navy; text-decoration:none}
a:active {background:black; color:white; text-decoration:none}
a:visited {background:navy; color:white; text-decoration:none}

the order should be link, visited, hover, active... so it should look like this...
Code:
a:link {background:black; color:white; text-decoration:none}
a:visited {background:navy; color:white; text-decoration:none}
a:hover {background:white; color:navy; text-decoration:none}
a:active {background:black; color:white; text-decoration:none}

and last... why are you making fun of people who are just learning about computer science? lighten up a little--everyone has to start somewhere--watch out, because the idiots will rule the world

sorry, i meant for onlyinkenya.com... i am going to be redesigning northblue.net later this summer, so i'm not really worried about it.

EDIT: hey, it worked! thanks bro, i'll hafta keep that one in mind next time :) :)

and i make fun of the people who are just learning, bc they say stupid things that are untrue, but refuse to learn from their mistakes. imagine saying "microsoft make osx" and having 5 people say "no, apple makes osx, microsoft makes windows", but refusing to just admit you're wrong. these guys aren't learning anything, trust me.

it's that kind of stupidity that i'm highlighting.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.