• I have post my header to work.. just when it goes to single post, or any other part of the blog HEADER does not appear…supper lost.. trying to get help fix this issue link is here legendarystatusco.com/blog and here is example where header dont work! HERE

Viewing 4 replies - 1 through 4 (of 4 total)
  • try to use absolute file paths to the header images

    Thread Starter xxkingcxx

    (@xxkingcxx)

    how do i go by doing that have example?

    example:
    for instance this line from your header code:

    <tr>
    <td colspan="6"><img src="images/blogheader_01.gif" height="119" width="750" /></td>
    </tr>

    try and change it to:

    <tr>
    <td colspan="6"><img src="<?php bloginfo('template_url'); ?>/images/blogheader_01.gif" height="119" width="750" /></td>
    </tr>

    this part <?php bloginfo('template_url'); ?>/ should automatically add the absolute path to your images folder.
    http://codex.ww.wp.xz.cn/Function_Reference/bloginfo

    do the same for all other images in your header.

    Thread Starter xxkingcxx

    (@xxkingcxx)

    Thank you so much! you help out alot !!!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Header.php is not working!’ is closed to new replies.