Viewing 4 replies - 1 through 4 (of 4 total)
  • That is your menu. It displays your pages. If you want to get rid of bullets, add this to your style.css

    .nav li {
    list-style: none;
    }

    If you want to get rid of it completely, no one will be able to go to any of your pages. 🙂

    Thread Starter kumabear

    (@kumabear)

    Yes, I understand your second comment 😉 I’m using an alternate method for navigation with widgets due to the way these pages need to be linked. I just want the current hyperlinks that are appearing in the header to not show up there!! 😀

    Than just add this to your style.css, around line 2012 (that’s styling for the .nav) ‘display:none’, and you can delete margin-left, margin-bottom, and list-style for it so it looks like this:

    .nav {
    display: none;
    }

    Thread Starter kumabear

    (@kumabear)

    Brilliant!!! Worked like a charm. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove bulleted page title link from header?’ is closed to new replies.