I am trying to display my logo from CSS and it will not display.
When I inspect the element it shows that the image is there but will not appear on the web page.
CODE
#logo_image {
margin-top: 13px;
float: left;
background: url(images/logo_color.png) no-repeat;
padding: 8px 16px 8px 16px;
}
<a href="index.html" id="logo_terra"></a>
#logo_terra { ... }to match your existing markup. Secondly, it's worth noting that using a URL-based background is going to cause your image to be referenced relative to where the CSS definition is. If it's in an external file, then the URL will need to be relative to that, if it is defined within an actual HTML page, then the same thing applies. Have you tried defining it as an absolute URL to see if that works?