• Resolved Thorsten Hoeppner

    (@welliathome)


    How can I disable or hide the separator line using buttons?

    I’d like to insert my own thicker line above the shortcode.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Fernando Tellado

    (@fernandot)

    Hi @welliathome

    You can hide it with this little CSS snippet in the Customizer or Additional CSS if you use a block theme:

    .ayudawp-share-buttons {
    border-top: none;
    }

    If you want to hide top and bottom border lines, the CSS would be like this:

    .ayudawp-share-buttons {
    border-top: none;
    border-bottom: none;
    }

    Or you can use your own style, i.e.:

    .ayudawp-share-buttons {
    border-top: 2px dashed #ccc; //Custom top border line
    border-bottom: none; //Hide bottom border line
    }
    Thread Starter Thorsten Hoeppner

    (@welliathome)

    Great! Thanks, that’s really helpful.

    .ayudawp-share-buttons {border: none; margin: 0; padding-top: 30px; padding-bottom: 0}

    Plugin Author Fernando Tellado

    (@fernandot)

    Bitte schön

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.