• Resolved KF

    (@karlfred)


    On our home page, https://stlukesls.org/, we have your plugin showing blog posts and once we updated to WP 4.6.1 the names of the post authors are dropped slightly lower than the line of text they reside upon. Can you please look at this and address it with a fix. Thanks! Love your plugin!!

Viewing 1 replies (of 1 total)
  • The issue you’re having comes from your theme styles. the div below adds a padding-top

    to all a-tags/links in your sidebar including the one you inquired about.

    .widget li a {
        padding: 4px 0; THIS ONE
        display: inline-block;
        vertical-align: top;
    }


    Place this in your theme stylesheet and you should be straight.

    div.rss_content small a{
      padding-top:0 !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Author Name Dropping Below Line’ is closed to new replies.