As a quick fix if you don’t already have a Child_Themes or a custom.css you should install a plugin like custom CSS plugin then add the following to the custom css area.
.blog .post, .single .post, .archive .post, .search .post, .search .page {
overflow: visible;
}
Sal – Thanks for the response.
I am using child theme, and did add your code to my custom css, but it made no difference at all.
When using Firebug on Firefox, I can not seem to isolate the code which appears to limit the height of the box containing the actual share buttons. The “Share This” is visible, but not the icons immediately below.
whats is you child theme called – ie folder name?
The folder is hueman-child-master
i added it to custom.css Should I only be editing the child style.css and not custom?
Thanks for the quick reply!
I had added it to child/custom.css Should I only be editing the child style.css and not custom?
No custom is better – let em check you file
since it is a child theme I would just add it to the style.css
or you can add
@import url(“custom.css”); to the style.css – but if you are going to do this you might just as well do the above instead
THANK YOU!
I added it to the child style.css and removed it from the child custom.css and it now works as desired.
As you can see, now the bottom of post share buttons work, but I also show the vertical share bar along the right side of the post.
It seems that the following controls the sharre. How do I disable this share bar and not lose the one we just got right on the bottom?
<div class=”sharrre-container”>
Thanks again so much!
Just add
.single .post .sharrre-container {
display: none;
}