How can I remove the subpage headings (in grey) on the parent page?
  • jordodayjordoday
    May 2012
    Sub pages appear in grey text... how can I remove this?

    http://jdlink.us/Jggvxa
  • You can change it in the css...
  • jordodayjordoday
    May 2012
    Hey there. Thanks so much for your help! I am quite the novice so forgive my ignorance. I dug around in the css and am not sure exactly what to remove, or change. I tried removing the following but it didn't work (it changed the navigation but didn't remove it...)


    ul.sub-pagination {list-style:none; margin:11px 0 0 0; padding:0; font-size:12px; float:right;}
    ul.sub-pagination li {list-style:none; display:inline; margin-left:15px;}
    ul.sub-pagination li a {color:#acacac;}
    ul.sub-pagination li.current_page_item a, ul.sub-pagination li a:hover {color:#666; text-decoration:none;}


    Here is my site url: http://jordandayton.com/learncanvas/resources/

    Again... I dig the breadcrumb above the main page name but I want to get rid of all the text to the right of the subject, in this case everything to the right of the big word RESOURCES.

    Thanks for your help!
  • Did you get rid of it? I don't see them anymore..
  • jordodayjordoday
    May 2012
    Yes! You're not going crazy ;-) I figured out how to remove it yesterday... I applied the same logic as we discussed in this post: http://jdlink.us/IQKksM

    I changed the code from above (in this post) to this:

    ul.sub-pagination {list-style:none; margin:11px 0 0 0; padding:0; font-size:12px; float:right; display:none;}
    ul.sub-pagination li {list-style:none; display:inline; margin-left:15px; display:none;}
    ul.sub-pagination li a {color:#acacac; display:none;}
    ul.sub-pagination li.current_page_item a, ul.sub-pagination li a:hover {color:#666; text-decoration:none; display:none;}


    Gotta love that "display:none;" function!

    Thanks for all your help and prompt responses!