Remove Border from Post Images on Home Page

  • Unknown's avatar

    Hi,

    I am using png images that I want to float like buttons on the home page. How can I change the CSS to get rid of the gray words (and shadows?) around each post on the home page?

    Thanks, so much!

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

  • Unknown's avatar

    Hi there, in order to make this change, you would need the WordPress.com Premium Plan upgrade, which includes Custom Design and the ability to add custom CSS. You can try out and preview the WordPress.com Premium Plan and custom CSS before you buy as explained here. The following would be the CSS needed to get rid of the border and box shadow on the featured images and to hide the titles and dates.

    .featured-image img {
        border: none;
        box-shadow: none;
    }
    .home .hentry .entry-title, .home .hentry .entry-date {
        display: none;
    }
  • The topic ‘Remove Border from Post Images on Home Page’ is closed to new replies.