• Resolved samdz

    (@samdz)


    Hello,

    I woul like to change a position of button from -309px to -345px
    this value is added as inline element

    html display!:

    <div id=”ssb-container” class=”ssb-btns-left ssb-anim-slide” style=”z-index: 1; left: -309px;”>
    <ul class=”ssb-light-hover”>
    <li id=”ssb-btn-0″>
    <p>
    <span class=”fa fa-arrow-circle-right”></span> Essayer …
    </p>

    </div>

    CSS display:

    style.element {
    z-index: 1;
    left: -309px;
    }

    I don’t know where can find this ‘inline element’ it’s on the HTML, could you help me please?

    Best regards
    Sam

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

    (@enigmaweb)

    You can simply add this to your theme css to override:

    #ssb-container {
    left: -345px !important;
    }

    See alsoL https://maevelander.net/where-to-add-css-in-wordpress/

    Thread Starter samdz

    (@samdz)

    Hi Maeve,

    I tryed this solution before but. the hover or slide effect will not working if I add !important to css ‘#container’

    To remove this problem of extra text displayedcould you:
    Add a field from admin to add manually “- …px” for #container (I think it is different between themes)

    Or if possible to remove the inline element from html and add the value -309px into the css file of plugin, then we can correct it from source.

    I love your plugin, just this extra text displayed is really difficult to manage.

    Best regards
    Sam

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

The topic ‘extra text displayed / CSS source ‘inline element’..’ is closed to new replies.