Mystery bullet points
-
Hi there,
I’m using a combination of GenerateBlocks and some CSS (see below) to create a basic Links page. It’s only in its first draft at the moment but I’ve hit a slight formatting problem …
On the page there are 4 social icons at the bottom. However, what are also there are 4 bullet points. These are the same style of bullet points that I use when writing blog posts as you can see here : https://richiesroom.com/dogs-fireworks-stress/#Sub1.2
Why are bullet points showing where the social icons are and, perhaps more importantly ?? , how do I get rid of them?
Re header, footer, and menu removal
/* Don't display header, footer, or manin menu on specified page */ /* 3653 is the page id for the Links page */ body.page-id-3653 .site-header, body.page-id-3653 .site-footer, body.page-id-3653 .main-navigation { display: none; }
And re bullets:
/* Spacing between bullet points */ .entry-content li { margin-bottom: 1em; } /* Clear existing style then change colour & icon for bullet points */ .entry-content ul li { position: relative; list-style: none; } .entry-content ul li:before { position: absolute; left: -1.5em; padding-right: 5px; color: #ff6200; content: "\2726"; /* replace U+ with \ */ }
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Mystery bullet points’ is closed to new replies.