• Resolved ericaski

    (@ericaski)


    How can I realign the featured page widgets so they are all top aligned? It seems if the content is not exactly the same height in number of sentences, the widgets appear uneven (bottom aligned).

    http://thvcreative.com

Viewing 1 replies (of 1 total)
  • Plugin Author Nick Diego

    (@ndiego)

    Hi ericaski,

    This is due to your theme’s CSS, not the plugin itself. It appears as though your theme is using the following CSS:

    .home-top .featuredpage,
    .home-top .featuredpost {
        display: inline-block;
        margin-right: 2.63157%;
        width: 23%;
    }

    If you change this to the below, you should be all set.

    .home-top .featuredpage,
    .home-top .featuredpost {
        display: block;
        margin-right: 2.63157%;
        width: 23%;
        float:left;
    }

    Let me know if you have any further questions.

    Nick

Viewing 1 replies (of 1 total)

The topic ‘Top align in row’ is closed to new replies.