[Resolved] Rounded Corners for Blog Post containers

Home Forums Support [Resolved] Rounded Corners for Blog Post containers

Home Forums Support Rounded Corners for Blog Post containers

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #784462
    Vish

    Hello

    I would like to make the blog post listing containers have rounded corners as in the below link:

    https://spreadprivacy.com/

    I have included my site URL in the post ๐Ÿ™‚

    #784476
    David
    Staff
    Customer Support

    Hi there,

    give this CSS a shot:

    .generate-columns-container .inside-article {
        border-radius: 5px;
    }
    .generate-columns-container .inside-article .post-image img {
        border-radius: 5px 5px 0 0;
    }
    #784490
    Vish

    Thank you David ๐Ÿ™‚

    #784500
    David
    Staff
    Customer Support

    You’re welcome

    #1139989
    Rickard

    Hello!

    This code works for the blog page which shows the latest articles, but not an individual post.

    How can I make the corners rounded on the posts themself?

    I am displaying the image above the title with no padding.

    #1140010
    David
    Staff
    Customer Support

    Hi there,

    this will apply to blog and single posts

    .inside-article {
    border-radius: 5px;
    }

    If you want to include comments area and sidebar widgets then this:

    .inside-article, .comments-area, .widget {
        border-radius: 5px;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.