MyBB Community Forums

Full Version: How can I put this effect when selecting something?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
would you like to PM me temporary access to forum admin panel to check it ..
(2016-03-28, 06:25 AM).m. Wrote: [ -> ]would you like to PM me temporary access to forum admin panel to check it ..
Ok mate, my forum is www.minimisiones.esy.es when you are registered, thenĀ i will give you permissions to join admin panel
Open color_black.css
Change:
a:link,
a:visited,
a:hover,
a:active {
	color: black;
}
To:
a:link,
a:visited {
	color: black;
}
a:hover,
a:active {
	color: #FFA500;
}

Open global.css
Change:
#panel .lower a:link,
#panel .lower a:visited,
#panel .lower a:hover,
#panel .lower a:active {
	color: black;
}
To:
#panel .lower a:link,
#panel .lower a:visited {
	color: black;
}
#panel .lower a:hover,
#panel .lower a:active {
	color: #FFA500;
}
Pages: 1 2 3