• Resolved johnwvg

    (@johnwvg)


    I’ve worked on this for awhile now and can’t find the answer anywhere…

    I love this plugin but I can’t seem to find how to get the title of each post to be inline (or to the right of) each thumbnail. Instead, the titles are underneath each thumbnail.

    The link to the page showing this issue is included in the post. Anyway to correct this? Thank you for any help you can provide.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Hector Cabrera

    (@hcabrera)

    Hey @johnwvg,

    Try adding these styles to your theme’s stylesheet:

    .wpp-list li {
        position: relative;
    }
    
    .wpp-post-title {
        display: inline;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    When you’re done, do hard-refresh your browser (ctrl+F5 on Windows, cmd+F5 on MacOS) so it picks up the changes.

    Thread Starter johnwvg

    (@johnwvg)

    Thank you so much Hector! That did the trick! I have been stuck on that for awhile!

    • This reply was modified 6 years, 6 months ago by johnwvg.
    Plugin Author Hector Cabrera

    (@hcabrera)

    You could have asked for help sooner ??

    Enjoy the plugin!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to get the title text positioned to the right of the thumbnail?’ is closed to new replies.