• Resolved GreenFutureConsulting

    (@greenfutureconsulting)


    I blog at my professional website, Green Future Consulting Services. I use Jetpack to put sharing buttons at the bottom of each post, but on the post summary pages, they’re cut in half. I’ve seen nothing about this problem and have no idea of how to fix it.

    Esplanade is wonderful, but this is unprofessional. Please help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • in style.css, this is restricting the height:

    .teaser .entry-summary {
    	height:64px;
    	overflow:hidden;
    }

    possibly change to:

    min-height:64px;

    Thread Starter GreenFutureConsulting

    (@greenfutureconsulting)

    Hi–thanks, but I tried putting that into the custom css field for the Theme Options, and nothing changed. I’m really not much of a programmer, so please bear with me.

    I suspect that varying the teaser height itself won’t help, because the share buttons are in a separate section underneath the teaser (there’s a bar under the teaser text, then the buttons). If WordPress was “counting” the height of the share buttons as part of the teaser, it would be showing less of the post text, because that is what it varies based on height limitation, right?

    What @alchymyth said is correct. The icons are actually inside the entry-summary div. I have tested with CHrome Developer Tools, you need to remove those lines and they will appear fine.

    Thread Starter GreenFutureConsulting

    (@greenfutureconsulting)

    So…how do I do that? Do I need to download the css file and edit it by hand, or is there a way to make this change using the “custom css” field (under “Design” tab in Theme Options)? Seems to me there should be a way to do it there, but when I copied that code into the field, nothing changed.

    Try adding this code in the Custom CSS field:

    .teaser .entry-summary {
    	height:auto;
    	overflow:visible;
    }
    Thread Starter GreenFutureConsulting

    (@greenfutureconsulting)

    That worked! Thank you so much! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Esplanade theme–sharing buttons cut off on post summary pages’ is closed to new replies.