I have added a logo in header.php in my themes folder but it is only displayed on the home page and not on any other pages - if I click on any link the top menu stays but the logo is not shown. Is there a check somewhere to prevent it from showing on any additional pages? I am using the anunciamex theme.
Thanks
Jason
Just to update - I have put a banner into footer.php and it does the same. Text stays visible but images vanish on any page other than home page.
CAn you show us the code, please?
You need to edit the header.php and footer.php form the folder anunciamex
regards
The div for logo and strap I added myself to allow me to have a text intro for the site above the menu on the right but the same thing occurs even when they are removed.
Thanks
Jase
[code]
<div id="contenedor">
<script type="text/javascript" src="<?php echo SITE_URL.'/themes/'.THEME;?>/jsTabs.js"></script>
<div id="header">
<div id="logo">
<img src=images/logo.png border=0 width=238 height=60>
</div>
<div id="strap">
<h1><?php echo STRAP; ?></h1>
</div>
<div class="clear"><!-- --></div>
<div id="menu">
<ul id="nav">
<?php generateMenuJS($selectedCategory,"
</div>
</div>
<div id="submenu">
<div id="submenu_left">
<b><?php echo T_FILTER;?></b>:<?php generatePostType($currentCategory,$type); ?>
</div>
<div id="submenu_type">
</div>
<div class="clear"></div>
</div>
<div id="content">
<div id="left">
[/code]
The path to the image src is wrong.
try this: <img src="<?php echo SITE_URL.'/images/logo.png';?>" border=0 width=238 height=60>
that was the problem ;)
Fixed, thank you :)
Welcome!
This topic has been closed to new replies.