Im using a hover, for a div, style in css. all the links in that div work fine, but the style also apply to images let me what do i do to remove that hover link from images. why it is also working at image? because im linking thumbs to its actual size image (as shown below) so the a hover style is also applying at image. I want images to appear normally.
You'll need to add classes to the links around images and use those to take off the hover styling, unless there's some other way you can target just those. It's hard to say without seeing the markup.
Do you mean the boder around the images? If so the following css will remove that: a img { text-decoration: none; border:none; }