Nishita theme – remove post title borders

  • I would like to remove the thin lines that appear on my posts directly below the title and above the date/comments.

    The blog I need help with is: (visible only to logged in users)

  • I went to your blog and I noticed that the lines that you were talking about are no longer visible.

    I tested the Nishita theme within a test blog and I was able to see the lines again that you were talking about before. I inspected the elements within the post and found that there is a margin on the bottom of the h2.photo-title and on the bottom of the post container. So, it is creating an illusionary border, when it is actually just the background showing through the margins.

    I was able to remove these lines by inserting the CSS code

    h2.photo-title,
    .photo {
        margin: 0;
    }

    This effectively removed the space between the elements, eliminating those lines.

  • The topic ‘Nishita theme – remove post title borders’ is closed to new replies.