Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9684
    Terry M
    Member

    How can I change the thumbnail image size that shows in the left of each post on the homepage from 210×210 to 150×150.

    #9731
    Sakin
    Keymaster

    @Terry M: To change that form coding will need to hire developer and build child theme and edit functions.php where image is define.

    But you can adjust with css by adding the following CSS in “Appearance => Theme Options => Custom CSS” box

    @media screen and (min-width: 1060px) {
    	.home .post .post-thumb a img { width: 150px; }
    	.home .post .post-thumb { width: 160px; }
    }
    #9751
    Terry M
    Member

    I have added it to my child theme and it seems to work. Thanks.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change image size on homepage’ is closed to new replies.