hogann16
Jul 6 2009, 10:01 PM
Sorry, another questioning. This is in reference to the default picture on the page in the 2.0 layout. I've tested multiple codes attempting to create a border around the picture that when hovered, will change the border color (for example, a black border would be the normal img link, and the border would turn white when you hover over it). I've tested different codes, but none seem to work without affecting the other pictures in the entire box. If anyone has a script that can sprout this desire, it'd be appreciated. Thanks!
xose
Jul 6 2009, 11:14 PM
if you want just your default, use "div.photo" instead of "img"
CODE
div.photo:hover {
border-style:solid;
border-color:blue;
border-width:3px;}
Mickey
Jul 7 2009, 04:20 AM
Xose's code should work. If not, try this:
CODE
div.basicInfoModule div.photo a img {border:3px solid; border-color:red;}
div.basicInfoModule div.photo a img:hover {border:3px solid; border-color:blue;}