Hard coded logo image not showing up but background image are.
-
This is my first time converting html and css into a blank theme. I am attempting to convert a website that I built, into my own simple theme. All is going OK except my logo image is not showing up. It is hardcoded into the header file. All background images on the page are showing up just fine. All images are in the same folder so path shouldn’t be wrong. Here is a piece of my header code:
<header> <div id="a5-header"> <div id="logo"><a href="index.php"><img src="images/logo-try-3.png" width="297" height="114" alt="Web Tech By Design logo"></a> </div> <div id="headerText" class="description"><h1><?php bloginfo('description'); ?></h1> </div> <nav> <div id="a5-menu-box"> <?php wp_nav_menu(array('menu'=>'Main Navigation Menu')); ?> </div> </nav> </div> </header>
I have an images folder one level down from my index, header, footer, and sidebar php files. The logo image is in that file along with all other images that are showing up just fine.
My images that are inserted into posts via the upload feature work just fine as well.
Any suggestions as to what is wrong? My logo displays just fine in my static web setup before converting to a dynamic theme.
- The topic ‘Hard coded logo image not showing up but background image are.’ is closed to new replies.