Support » Fixing WordPress » deleting some theme features (please help me)

  • hey guys.. this is my first ever post.. I just want to ask your help about the site I am making. here it is: http://babolatpureteam.org/

    If you scroll up to the bottom of the page, you could see the tags and the categories showing in there, can you please help me on how I could get rid of them?

    thanks much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • There is something wrong with the html in your templates. If you look at the final source code in your browser you will see that the sidebar widget area is not being closed properly (or something):

    (excerpted from the end of your primary widget area and where that extra category list is showing a the bottom of the page)

    </div><!-- #primary .widget-area -->
    <!--BEGIN #widget-categories-->
    <li id="categories" class="widget-container">
        <h3 class="widget-title">Categories</h3>
        <ul>

    No matter what you are doing that is invalid code and the browser is making stuff up just to even guess what you “intend”.

    A <div> cannot be contained within a <ul>. And an <li> has to be inside a <ul>.

    So it looks like somehow your primary widget area is being closed prematurely (strange but that’s what it looks like) and there is this extra widget floating where it doesn’t belong because the browser is confused. Everything OTHER than that errant category widget looks properly opened and closed.

    Not sure how to fix the problem from here, but that should give you enough to hunt the problem down.

    Thread Starter daryllirabon1

    (@daryllirabon1)

    hey man.. thanks much for this info.. got the problem fixed.. any idea on how to remove the tags under my post section?

    http://babolatpureteam.org/

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘deleting some theme features (please help me)’ is closed to new replies.