Fork me on GitHub

Logo Problem  Bottom

  • If anyone has a 21 inch monitor and uses the settings 1020x768 pixels and knows how to do this, maybe you can help me with this. The theme I am using is obviously set to use an 800x600 pixels setting. However, when you set your monitor to 1020x768, the banner or top logo is split in the middle and looks crummy. The rest of the theme looks great. Is there anyway with code, I can make the top logo or banner come together to work with the 1020x768 pixels setting? Does anyone know? I would sure appreciate any help I can get with this!

    Thank you,

    Marie Alline
  • this is from the sourcecode on your site, I assume this is in your themeheader.php

    Code

    <table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr background="themes/FreepnTheme05/images/mastheadfiller.gif">
        <td width="50%"><a href="http://footprints-online.com/about_us.php" target="_blank"><img src="themes/FreepnTheme05/images/masthead01a.gif" alt="Free PN Theme by www.ROMELO.com : Blue Madness" width="385" height="140" border="0" /></a></td>
        <td width="50%" align="right"><img src="themes/FreepnTheme05/images/masthead01b.gif" width="385" height="140" /></td>
      </tr>
      <tr background="themes/FreepnTheme05/images/navfiller.gif">
        <td height="50">&nbsp;&nbsp;<span class="slogan">My.Footprints</span>
     : <span class="slogan">Come and fellowship with us!</span>
    </td>
        <td height="50">&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table>


    you need to move the background="themes/FreepnTheme05/images/mastheadfiller.gif" parameter from the tag on line 2 to the tag on line 3, and the tag on line 5 so that it looks like this:

    Code

    <table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="50%" background="themes/FreepnTheme05/images/mastheadfiller.gif"><a href="http://footprints-online.com/about_us.php" target="_blank"><img src="themes/FreepnTheme05/images/masthead01a.gif" alt="Free PN Theme by www.ROMELO.com : Blue Madness" width="385" height="140" border="0" /></a></td>
        <td width="50%" background="themes/FreepnTheme05/images/mastheadfiller.gif" align="right"><img src="themes/FreepnTheme05/images/masthead01b.gif" width="385" height="140" /></td>
      </tr>
      <tr background="themes/FreepnTheme05/images/navfiller.gif">
        <td height="50">&nbsp;&nbsp;<span class="slogan">My.Footprints</span>
     : <span class="slogan">Come and fellowship with us!</span>
    </td>
        <td height="50">&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table>


    hope that works for you, it's difficult without actually looking at your theme PHP files

This list is based on users active over the last 60 minutes.