• 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)
  • Hi there,

    did you resolve the issue – as i am not seeing them on the social share icons ?

    Thread Starter richieps

    (@richieps)

    Hi David,

    Thanks for your response.

    No, I didn’t resolve it I’m afraid.

    Forgive me asking, but are you looking at the Links page? I suddenly thought after posting the fireworks page that that may confuse the issue … sorry.

    Leo

    (@leohsiang)

    This isn’t exactly a GP-related question.

    Try replacing li in your CSS with li:not(.wp-social-link).

    Thread Starter richieps

    (@richieps)

    Excellent, that did it ??

    Thank you very much, Leo.

    Leo

    (@leohsiang)

    No problem ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Mystery bullet points’ is closed to new replies.