Anyone know why my logo is showing twice in ?
html:
<div id="logo"><a href="/Presidente Prude/oferta_do_dia" class="link">
<font color="#264D73"><img src="/static/css/i/logo.png" alt="Cidade Louca" /></font></a></div>
css:
#logo {
width: 400px;
height: 125px;
margin: 3px 0 0 0;
position: absolute;
background: url(i/logo.png) no-repeat;
}
thank you …
That is because you’re setting it twice – once as the div’s background and again as an img tag. Remove one of them, it should be fine.