• Resolved haxer

    (@haxer)


    Hi guys,

    I need some help.. Recently I turned my hueman theme settings to “Display your blog post as a standard list.”

    So I am happy with it… But the thumbnails are too small now , Please visit my website and tell me how can i make them a lil bit bigger in height and widht..

    Here is my website : TechRoute.net ,,,, Go and check.. and help me reply/

    • This topic was modified 7 years, 7 months ago by haxer.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter haxer

    (@haxer)

    i changed back to default… but still tell me .. how to increase the size of Thumbnails (Featured Images ) when we are using ” Display Your Blog Post as a Standard List”

    please reply 🙂

    Hi haxer. You could try this in your custom CSS:

    /* make standard post layout images larger */
    @media screen and (min-width: 729px) {
        .post-standard .post-inner {
            padding-left: 260px;
        }
        .post-standard .post-thumbnail {
            margin-left: -260px;
    	max-width: 250px;
        }
        .post-standard .post-content {
            margin-left: 30px;
        }
    }
    Thread Starter haxer

    (@haxer)

    Bro, the size is now bigger..but still not matching what i want… I want Some more widht… not that much height

    help 😐

    • This reply was modified 7 years, 7 months ago by haxer.
    • This reply was modified 7 years, 7 months ago by haxer.

    The thumbnail images are square. The height is set automatically according to the width. If you expand the width without expanding the height the images will be out of proportion.

    Your other option is to use the default post layout and modify the theme template to show one post per row instead of two.

    • This reply was modified 7 years, 7 months ago by bdbrown.
    Thread Starter haxer

    (@haxer)

    355×200 ,,,, i want that thumbnail size… is it possible ?

    I haven’t tested this so not sure how it will work. It assumes you’re using a single-sidebar layout:

    /* make standard post layout images larger */
    @media screen and (min-width: 729px) {
    	.post-standard .post-inner {
    		padding-left: 355px;
    	}
    	.post-standard .post-thumbnail {
    		margin-left: -375px;
    		max-width: 355px;
    	}
    	.post-standard .post-thumbnail img {
    		height: 200px;
    	}
    	.post-standard .post-content {
    		margin-left: 30px;
    	}
    }
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Thumbnails So Small [Display your blog post as a standard list]’ is closed to new replies.