Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

please check the following links:

Problem link: http://www.j-lou.info/fashion-directory/index.php

Working fine Link: http://www.j-lou.info/fashion-directory/accounts/

<div id="wrapper">
   <div class="content-top"></div>
   <div class="content-middle"></div>
   <div class="content-bottom" style="clear: both;"></div>
</div>

problem image: enter image description here

these 2 links are belong to a single site and design, but both are having lot of difference. can you guys please suggest me what to do to resolve the home page issues.

thank you.

share|improve this question
1  
What is your problem again? – Andres Ilich Mar 14 '12 at 20:01
Always include the relevant code, etc., in the question itself. People shouldn't have to follow links to help you, links rot over time, and searches for relevant items within the code won't find the question. More: meta.stackoverflow.com/questions/118392/… – T.J. Crowder Mar 14 '12 at 20:05
A screen-shot of this issue would be helpful. I see nothing. – Diodeus Mar 14 '12 at 20:06
images just uploaded .. – Muzammil Mar 14 '12 at 20:12
Took a look at your screenshot and can't see the issue on your pages. – Andres Ilich Mar 14 '12 at 20:40
show 1 more comment

closed as too localized by T.J. Crowder, Sparky, Heisenbug, LittleBobbyTables, KatieK Feb 22 at 0:57

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Your HTML structure is totally different for the two pages, but with regards to your question, especially note that the footer in the home page is located where the content-bottom is on the accounts page. That position difference is very likely going to seriously mess with how something will render (as your footer width experience is showing).

Essence of Accounts Structure

<div id="wrap">
  <div id="inner-wrapper">
    <div class="top-menu-wrapper"></div>
    <div id="main-bg">
      <div id="header" class="wrap"></div>
      <div id="wrapper">
        <div class="content-top"></div>
        <div class="content-middle"></div>
        <div class="content-bottom"></div>
      </div>
    </div>
    <div class="clearfix"></div>
  </div>
  <div id="footer"></div>
</div>

Essence of Home Page Structure

<div id="wrap">
  <div id="inner-wrapper">
    <div class="top-menu-wrapper"></div>
    <div id="main-bg"></div>
      <div id="header" class="wrap"></div>
      <div id="wrapper">
        <div class="content-top"></div>
        <div class="content-middle"></div>
        <div id="footer"></div>
      </div>
    </div>
  </div>
</div>
share|improve this answer
basically i themeing (esyndicat) and i just code 1 html page wrap up to the header.tpl and footer.tpl file, but i don't know what going wrong. on other page there are showing different structure of html. – Muzammil Mar 14 '12 at 22:17
@Muzammil--I don't have an answer as to why your code is generating what it is, I'm just sure that your footer being in the wrong spot on the page is what is causing your display issue. There may be something in the content portion of the home page that is invalid (like a div that is not opened or closed) that is causing the page to render incorrectly. – ScottS Mar 15 '12 at 1:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.