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.