Hello,
There is such code in css file
a:hover {
background: #F1F9DA;
color: #895F30;
border-bottom: 1px dotted #895F30;
}
so on mouse over it changes the backgroutd of links and adds border.
But I have images wiht links
<img class="reklama" src="http://localhost/darzelis/uploads/reklama/ad_-_Copy.jpg" alt="#" border="0">
and I don't want a backgroud and border when mouse is over link image with link, but where are links with without images I want it be how it is now.
How can I easily achieve this?
I know I could create a class and use it where I have images with links but then I have add it everywhere in my html code.