Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #48162
    JLeroy
    Participant

    Hello,
    On the blog page, how can I reduce the feature image size to 150*150 px and reduce the space between post text lines ?

    Many thanks for your help, Jean Leroy

    #48177
    Sakin
    Keymaster

    @JLeroy:
    1. To reduce the height and width of featured image. First, just upload the featured image of size 150px width and 150px height. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #main #content .post-img {
        width: 162px;
    }
    #main #content .post-img a,
    #main #content .post-img img {
        height: 150px;
        width: 150px;
    }
    .type-post.has-post-thumbnail .col5 {
        width: 450px;
    }

    2. Not sure what you mean by space between post text line. I hope you mean the line height. Then you can adjust the line height as per your need and then add the following css in “Appearance => Theme Options => Custom CSS” box.

    #main #content {
        line-height: 24px;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Feature image and font size’ is closed to new replies.