Author Topic: Html/Css Link styling  (Read 3653 times)

0 Members and 1 Guest are viewing this topic.

Offline Digital

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 107
  • Rating: +0/-0
  • 10101
    • View Profile
    • Digital's Hp
Html/Css Link styling
« on: February 21, 2015, 04:56:06 pm »
On my new homepage (in work) i have som links which i want to have a other style. i have to change thestyle for all links in <nav> <ul> <li>.i want they to become green if the mouse is over them.
thanks for all help;)
I'm sorry if i might make some mistakes, I'm German so English isn't my first language. Please correct me :)

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: Html/Css Link styling
« Reply #1 on: February 21, 2015, 04:59:46 pm »
try this:
Code: [Select]
nav a:hover {
color:green;
}

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Digital

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 107
  • Rating: +0/-0
  • 10101
    • View Profile
    • Digital's Hp
Re: Html/Css Link styling
« Reply #2 on: February 21, 2015, 05:03:56 pm »
and if i additional want that its normaly blue and yellow if activated?
I'm sorry if i might make some mistakes, I'm German so English isn't my first language. Please correct me :)