Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Sure thing.

    What’s happening is your theme’s
    .freemium-post li CSS rule has float: left; which is being applied to all of the li tags, including the sharing ones.

    Please add to your CSS, either directly to your theme’s style.css or via Appearance->Edit CSS if you have the Custom CSS module enabled:

    .sd-content li {
    float: none;
    }

    Cheers!

    Thread Starter lmondino

    (@lmondino)

    Thank you!!
    Had to change it inside /wp-content/plugins/jetpack/modules/sharedaddy
    file: sharing.css
    in .sd-content ul li {

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    I would suggest changing it via Appearance->Edit CSS (or directly in your theme if it isn’t one that will be updated automatically).

    Any changes made to files within Jetpack will be overridden in the next update, so best to make these changes outside of a regularly maintained plugin.

    Cheers!

    Thread Starter lmondino

    (@lmondino)

    Done

    Thanks for the advice!!
    best regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘sharedaddy links vertically instead of horizontally’ is closed to new replies.