Forums

[resolved] Menu change (13 posts)

  1. cbreihof
    Member
    Posted 9 months ago #

    Hello,
    Can anyone help me i will appreciate the help or support.
    So I would like to know how to remove the menu bar at the content?
    Here is a picture:

    http://imageshack.us/photo/my-images/838/menuqg.png/

    I am really thankful for anyone reply the answer to me!!

  2. zoonini
    help me help you
    Posted 9 months ago #

    That looks like a breadcrumb trail, but no one will be able to help much without a link to your site. It may be a plug-in, or it may be hard-coded into one of your theme files, or something else.

  3. cbreihof
    Member
    Posted 8 months ago #

    Heres my website!
    http://bigcity.blogg-in.com

  4. zoonini
    help me help you
    Posted 8 months ago #

    This is the code:

    <ul class="rd-page-navigation clearfix"><li class="pagenav"><strong>Pages</strong><ul><li class="page_item page-item-2 current_page_item"><a href="http://bigcity.blogg-in.com/sample-page/" title="Sample Page">Sample Page</a></li>
    </ul></li></ul>

    What you need to do is find the file in your theme that is generating it. It maybe somewhere in page.php or elsewhere. Best bet might be to search your files for this bit of text:

    rd-page-navigation

    When you find it, you'll have found the code block that needs to be removed. Be sure to back up any files before making any changes in case something goes wrong. I'm also tagging this with the name of your theme - raindrops - as the theme maker probably is the best person to help you with this.

  5. cbreihof
    Member
    Posted 8 months ago #

    does anyone else know the location of this file?

  6. cbreihof
    Member
    Posted 8 months ago #

    i onI only found this at "page.php"

    if(empty($ancestor) and !empty($raindrops_list_pages)) {
    echo '<ul class="rd-page-navigation clearfix root">';
    echo $raindrops_list_pages;
    echo '';
    }else {
    echo '<ul class="rd-page-navigation clearfix">';
    echo $raindrops_ancestor_list_page;
    echo '';
    }

  7. zoonini
    help me help you
    Posted 8 months ago #

    Try commenting out that whole block of code by putting it between
    /* and */

    Be sure to save a backup copy of your original, untouched page.php first, just in case.

  8. cbreihof
    Member
    Posted 8 months ago #

    Is this supposed to look like this:

    /*
    if(empty($ancestor) and !empty($raindrops_list_pages)) {
    echo '<ul class="rd-page-navigation clearfix root">';
    echo $raindrops_list_pages;
    echo '';
    }else {
    echo '<ul class="rd-page-navigation clearfix">';
    echo $raindrops_ancestor_list_page;
    echo '';
    }
    /*

    I dont get it can you give me an example please.

    [Please post code snippets between backticks or use the code button.]

  9. cbreihof
    Member
    Posted 8 months ago #

    and what is this for?
    <ul class="rd-page-navigation clearfix"><li class="pagenav">Pages

      <li class="page_item page-item-2 current_page_item">Sample Page
  10. cbreihof
    Member
    Posted 8 months ago #

    <ul class="rd-page-navigation clearfix"><li class="pagenav"><strong>Pages</strong><ul><li class="page_item page-item-2 current_page_item"><a href="http://bigcity.blogg-in.com/sample-page/" title="Sample Page">Sample Page</a></li>
    </ul></li></ul>
  11. zoonini
    help me help you
    Posted 8 months ago #

    Is this supposed to look like this:

    No. The opening comment indicator is OK - /*

    but you have the closing comment indicator as /* but it needs to be */

    http://www.tizag.com/phpT/comment.php

    and what is this for?

    It's an HTML list that generates some navigation.

  12. cbreihof
    Member
    Posted 8 months ago #

    thank you for the support :D

  13. zoonini
    help me help you
    Posted 8 months ago #

    My pleasure - glad it worked!

Reply

You must log in to post.

About this Topic