• Resolved mthornton

    (@mthornton)


    I would like for the posts on the home page to appear without the image. I’d prefer the title with a brief blurb.

    I love everything else about the design so hope there is an easy way to make this change.

    Thank you!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Would you please provide the link of your site? It will help me to figure out your problem more easier.
    Thanks

    Thread Starter mthornton

    (@mthornton)

    The site is: https://arkahead.org

    Thank you!

    Add the below code on style.css to remove image on posts.

    .home.feature div{
    	display: none;
    }

    Add the below code on style.css to increase font size of post title.

    .feature h2 {
        font-size: 38px !important;
    }

    If not work, feel free to ask.
    Thanks

    Just bear in mind that if you edit the theme files directly, you’ll lose those changes if the theme is ever updated in the future, to fix bugs or security issues or to add new features. Better to use either a custom CSS plugin or your theme’s built-in custom CSS option, if one exists.

    Thread Starter mthornton

    (@mthornton)

    Thank you for the suggestion. I tried including the CSS in both the custom CSS and the style.css sheet. It did not remove the image.

    Any other thoughts?

    Thanks!

    First install Customizer Custom CSS and go to Appearance > Customizer > Custom CSS
    and paste the below code there. You will get the changes live. If worked click on save and publish.
    Try by adding following code,

    .feature div {
        display: none !important;
    }

    If not worked, feel free to ask. Thanks

    Thread Starter mthornton

    (@mthornton)

    Thanks so much. I finally figured it out.

    I added this to the custom CSS.

    .thumb.clear a img, .thumb.clear img{
    display: none !important;
    }

    Appreciate the suggestions.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Changing format of posts’ is closed to new replies.