Site logo

[Support request] Arrow Elements Appearing Under Social Icons

Home Forums Support [Support request] Arrow Elements Appearing Under Social Icons

Home Forums Support Arrow Elements Appearing Under Social Icons

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2486258
    MMS

    Hi, In the footer of the following page, https://makemesustainable.com/about/ I’ve added social icon links but when published there are green arrows sitting to the left and overlapping the social icons. These do not appear when editing the page, can you please let mw know why these are appearing? Thanks

    #2486515
    Ying
    Staff
    Customer Support

    Hi there,

    As you have the cache plugin on, I can not see where the CSS is from.

    Can you disable all your cache plugins and clear the cache so we can take another look?

    #2487128
    MMS

    HI, I’ve set WP Rocket to safe mode so hopefully, you can now see this. Thanks

    #2487146
    David
    Staff
    Customer Support

    Hi there,

    in your Customizer > Additional CSS you have this CSS rule which is adding those arrows:

    .entry-content ul li:before {
        content: "\279C";
        position: absolute;
        left: -1.5em;
        color: #689931;
    }

    So that applies to every list in your post content which applies to those social icons.

    Options:

    a. You could simply copy the social buttons you have in your footer block element, as those are GenerateBlocks buttons they won’t get that style.

    b. change the above CSS to this:

    .entry-content ul:not(.std-list) li:before {
        content: "\279C";
        position: absolute;
        left: -1.5em;
        color: #689931;
    }

    Then select the Social Links Block ie. the wrapper around the icons not the individual icons, and in Advanced > Additional CSS Classes add: std-list

    #2487299
    MMS

    Thanks, that worked.

    #2487735
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.