• Resolved GAD

    (@gad)


    Hi, I’m trying to install a WP template from an outside source. This is what it’s supposed to look like, http://topwpthemes.com/styleon/ and this is what it looks like when I upload it… http://www.gentsanddisabled.com. Also, my pages and categories aren’t showing up either. Does anyone know how to fix this? I’ve tried it on Safari and Firefox and still having the same outcome. HELP!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I think you forgot a closing div somewhere (didn’t check, but it sure bears all the marks).

    your content-div is part of yuor menu-left-div, so my guess would be hat you forgot to close the menu-left-div.

    Peter

    So I was right, this is your current structure:

    <div id="rap">
      <div id="header">
        <div class="header-title"></div>
        <div class="header-description"></div>
      </div>
      <div id='menu-left'>
        <div id="search"> </div>
        <div id="content">
          <div class="post">
            <div class="meta"></div>
            <div class="storycontent"></div>
            <div class="feedback"></div>
          </div>
          <div style="visibility:hidden; display:none"></div>
          <div style="visibility:hidden; display:none"></div>
        </div>
        <div id="credit"></div>
        <div id="footer"></div>

    I would suggest this:

    <div id="rap">
      <div id="header">
        <div class="header-title"></div>
        <div class="header-description"></div>
      </div>
      <div id='menu-left'>
        <div id="search"> </div>
      </div>
      <div id="content">
        <div class="post">
          <div class="meta"></div>
          <div class="storycontent"></div>
          <div class="feedback"></div>
        </div>
        <div style="visibility:hidden; display:none"></div>
        <div style="visibility:hidden; display:none"></div>
      </div>
      <div id="credit"></div>
      <div id="footer"></div>
    </div>

    Two missing </div>‘s

    Peter

    Thread Starter GAD

    (@gad)

    Thank you so much Peter. It worked!

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

The topic ‘Theme is a mess’ is closed to new replies.