how to remove menu titles from my page

Discussion in 'Cloriato WordPress Theme' started by staids228, Sep 17, 2014.

  1. staids228

    staids228 New Member

    Joined:
    Jan 12, 2014
    Messages:
    6
    Likes Received:
    0
    Hi,
    On most of my pages, it puts the page title then the menu listing underneath.
    See the pic attached. The page is titled 'About TRBE' so on the top of my page it automatically puts

    About TRBE
    Home-->About---> TRBE

    I'd like to delete this menu listing in the code so this doesn't appear on all my pages. How can I do this?
     

    Attached Files:

  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Use following css code in Custom CSS to delete that portion.
    Code:
    .content_wrapper #crumbs {
    display: none;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. staids228

    staids228 New Member

    Joined:
    Jan 12, 2014
    Messages:
    6
    Likes Received:
    0
    where do I put the css? I put it in the 'appearances' / theme options in styling but it didn't remove it on all the pages.
     
  4. staids228

    staids228 New Member

    Joined:
    Jan 12, 2014
    Messages:
    6
    Likes Received:
    0
    never mind. i put it in the editor and it worked. thanks!
     
  5. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Use following code to remove that section from all pages.
    Code:
    #crumbs {
    display: none;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page