• Resolved vincentstag

    (@vincentstag)


    Is it possible to change location of the bar to the top side of the page ?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Maeve Lander

    (@enigmaweb)

    Not via the UI, but with CSS yes, anything is possible ?? The css that controls the position of the button container looks like this:

    #ssb-container {
        position: fixed;
        top: 30%;
    }

    So say you wanted the buttons to sit higher (nearer the top) you might adjust 30% to be less like this:

    #ssb-container {
        top: 15% !important;
    }

    The important! attribute overrides the value coming from the plugin. So you can add ^this code to your theme and it will override the css that’s in the plugin.

    Hope that helps point you in the right direction to achieve whatever you want.

    And Where do i insert the css code correct?

    Plugin Author Maeve Lander

    (@enigmaweb)

    Here’s an article I wrote to help with this: https://maevelander.net/where-to-add-css-in-wordpress/

    Thread Starter vincentstag

    (@vincentstag)

    ok, thank you for your reply. I’ll try to do it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Top location’ is closed to new replies.