I'm working on a template file and I came across something that's biting my head.
On the header.php file I have the following
<div id="logo">
<a href="index.php"><img src="images/logo.png" alt="MY COMPANY""/></a>
<p class="tagline">MY COMPANY</p>
However the logo.png file is not showing up. only the alt= text and the "tagline" show up.
- The .png file is in the images folder
- The css file is properly configured (at least to my knowledge)
- the header.php file is outside the 'images' folder so the image path should be ok.
this is my css code just for reference.
#logo {
float:left;
margin:22px 0 0 0;
}
#logo a {
float:left;
}
#logo .tagline {
display:inline;
float:left;
margin:0;
width:115px;
line-height:14px;
color:#aeaeae;
margin:0 0 0 10px;
padding-top:5px;
font-family:Arial, Helvetica, sans-serif;
}
Thanks for the help in advance.