Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes, .entry.share {padding-right: 0;} solved the issue ??

    Thanks mehrdads, I encountered the same issue and tried to figure out how to turn off the empty column left by an inactive Share bar. I’m running Hueman v3.1.0 + Hueman Addons 1.0.1.

    I installed the Hueman Addon plugin only because of the shortcodes, the Share bar is of no interest to me.

    Putting this snippet in my child theme:

    .entry.share {
    padding-right: 0;
    display: none;
    }

    … actually hid all the content of my posts, but it works fine when leaving out ‘display: none’

    So, putting this in my child theme made the empty space at the right side of my posts disappear:

    .entry.share {
    padding-right: 0;
    }

    I believe it goes without saying that the space for the Share bar better should disappear automatically whenever the Share feature is not activated.

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