• Good afternoon,

    I have been dealing with bullet issues in my Pages for most of the day today. Here is a link to a page where both issues are very apparent – https://www.vegansoiree.com/?page_id=1022

    As you can see there are bullets in the menu bar at the top that lists the Pages, and there are bullets on the left of each comment. These are only visible while viewing pages.

    What is the code to eliminate both of these on the style sheet?

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • It appears if you edit your style.css file and change on or near line 176:

    .page ul li {
      list-style-type:disc;
    }

    … to:

    .page ul li {
      /* list-style-type:disc; */
    }

    … or:

    .page ul li {}

    Your bullets will go away.

    Thread Starter brigitte-ruel

    (@brigitte-ruel)

    I don’t want to get rid of bullets, I just want to remove them from where they aren’t supposed to be. I managed to get them out of my menu bar with this;
    .page #navr ul li{list-style-type:none;}

    However, I still need to eliminate the duplicate set of bullets on the left side of the comments. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bullets in menu and comments in Pages’ is closed to new replies.