Help Please

Midnight

Seasoned Veteran
Joined
Apr 14, 2009
Messages
3,184
Reaction score
0
FP$
6
Hey FP!

I've just installed a new theme on my forum and am having some banner issues. As you can see on Zavle.com they're is a lot of space above the logo. I need to know how to make the space shorter. Also, on the logo there is a broken image mark on it? I have no idea why, as I have deleted the other logo via FTP and edited the code?

Thanks ALOT Ben Reeves.

If solved [100 FP up for grabs 🙂 ]
 
Go to the css find:
Code:
#header {
width: 778px;
padding: 122px 15px 0 15px;
height: 80px;
margin: auto;
background: url('./images/top.png') no-repeat bottom center;
text-align: left;
display: block;
}

Change the padding to:
Code:
padding: 0px 15px 0 15px;
 
Hey Bapinder, I just did that but now the logos to big and goes of the page.
 
Code:
padding: XXpx 15px 0 15px;
Keep changing the XX until you find a number of pixels that puts the banner where you want it.

As for the image, there seems to still be a link to the old logo in the overall header. Make sure you have purged the cache aswell.
 
Fowler said:
Code:
padding: XXpx 15px 0 15px;
Keep changing the XX until you find a number of pixels that puts the banner where you want it.

As for the image, there seems to still be a link to the old logo in the overall header. Make sure you have purged the cache aswell.

Hey Fowler, I did that but it isn't making a difference?
 
Fowler said:
Replace the XX with a number 😉

Sorry! 😛

Fixed that problem! How about the broken image sign? Is it clear what the problem is it clear what's wrong by looking at my forum?
 
There's isn't an broken image sign, but there's the hyperlink text on the logo, purge the cache.
 
By looking at view source i can see this:

Code:
<a id="wrapheader" name="wrapheader" accesskey="t"></a>

<div id="kontener">
<div id="header">
<a href="./index.php">
<img src="./styles/polyethylene/theme/images/logo.png" alt="Board index" />
</a>
</div>
<div id="content">
It looks like you still have a link in either the overall_header.html template file or you haven't purged the forum cache and it is showing the old cached version.

Bapinder, that is a broken image if you right click on the link click View Image Info or the equivelent for your browser.
 
^Ok, found out the problem, the header already hasd the image top.png which is the logo and header, so remove:
Code:
<a href="./index.php">
<img src="./styles/polyethylene/theme/images/logo.png" alt="Board index" />
</a>
 
Is that in overall_header?

There isnt a:

<a id="wrapheader" name="wrapheader" accesskey="t"></a>

<div id="kontener">
<div id="header">
<a href="./index.php">
<img src="./styles/polyethylene/theme/images/logo.png" alt="Board index" />
</a>
</div>
<div id="content">

In the overall_header file?
 
It will be slightly different. Look for this bit in particular - styles/polyethylene/theme/images/logo.png

If it still is not in the file then purge the cache and if that still doesn't work then refresh the templates.
 
Login into the acp and on the home page you will see "Purge the cache" and click the run now button by that.
 
Back
Top Bottom