I’ve just checked out your sitemap page and the issue with the blank bullet line is to do with some injected styles.
It appears as though you have a lot of ::before
and ::after
selectors everywhere in your markup. One of these is adding table styles to the sitemap unordered list element that contains the whole sitemap. Perhaps you’re using a page builder plugin?
You should be able to fix this with CSS, something like (untested):
.simple-sitemap-container ul li:before {
display: block;
}
There are options to configure sitemap output in the pro version. To turn off the sitemap icons you can use this shortcode:
[simple-sitemap types="page, post" list_icon="false"]
-
This reply was modified 5 years, 4 months ago by David Gwyer.
-
This reply was modified 5 years, 4 months ago by David Gwyer.
-
This reply was modified 5 years, 4 months ago by David Gwyer.
-
This reply was modified 5 years, 4 months ago by David Gwyer.