Jump to content
MakeWebGames

Recommended Posts

Posted

Hey Peeps,This Is Probs Easyer Than Im Making It, but for mccodes v2 basic main menu, how do u make the colour of your links change when you mouse goes over them, and possibly how do u make a hover bg image and non hover image work on main menu?

Posted

to make the links change colour when you hover the mouse over the link put this in your header.php where the other CSS stuff is.

 

a:hover {
color: gold ;
}

change the colour GOLD to whatever you want lol.

not 100% sure on the image one tho... but i think this will work...

 

a:link img,
a:visited img{
border: none;
}
a:focus img,
a:hover img,
a:active img{
border:2px solid gold;
}

and just put a link on the image like this..

 

[url='index.php'][img=images/index.jpg][/url]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...