MyBB Community Forums

Full Version: Footer affiliate box problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
alright, my footer is working perfectly on the index with my affiliation box, but on other pages it streches out.

other pages (it's all streched out (the box is not like the bottom one)

[Image: ea0cx1.png]

index (perfect)

[Image: o5s2nd.png]
Link to forums?
Cannot be revealed, sorry. Security reasons. it's a private clan forum.
Not really sure what you expect anyone to be able to do then, we'd need to look at the page source. Very little we can do when all we have are those images. You may have an unclosed or malformed tag somewhere but we have no way of knowing what or where.
here, ill post some clearer pictures.

Forum index footer: (this is a good box)

[Image: xcvjad.png]

and any other pages; this is what i get (the footer is spread accross the background)

[Image: x3u0au.png]
Run it through a validator. Almost surely bad code.
Sorry, Validator?

edit:

the code is

<div class="bottommenu">
<span class="smalltext">
<a href="AFFILIATESHERE</a>

</span>
That's bad code what you posted if that's what you're adding.

You missing the </div> and you didn't properly close your anchor tag either.

<div class="bottommenu">
<span class="smalltext">
<a href="AFFILIATESHERE">link</a>

</span>
</div>