• Hi,
    I really like this theme, but I could use some help making two minor changes.

    1. On the home page, I would like to add some smaller text on top of the feature image. How do I do that? It only seems to allow me to add one line of giant text.

    2. I would like to remove the block below the feature image. I am trying to make a very minimalist website that doesn’t require any scrolling. How do I go about that?

    Thanks so much for your help in advance.

Viewing 1 replies (of 1 total)
  • Hi, do you have a link to your site online that we can look at?

    Regarding the text above the featured image, are you wanting to customize the text for each of the posts on the site or just have something that is the same across all of the images?

    Regarding the block below the featured image, are you referring to the content of the post that you want to hide?

    If that is the case, you can add the following into Appearance->Customize->Additional CSS

    .home .post .entry-content {
        display: none;
    }

    If you want to hide everything about the post except for just the post title and the featured image on the homepage you can use the following instead

    .home article.post > :not(.entry-header):not(.post-thumbnail) {
        display: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to make small alterations to theme related to feature image’ is closed to new replies.