Hi all,
Is it possible to change the thumbnail images vertically? If yes, where can I change that in the css?
thx!
The blog I need help with is mariaswinnen.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi all,
Is it possible to change the thumbnail images vertically? If yes, where can I change that in the css?
thx!
The blog I need help with is mariaswinnen.wordpress.com.
Try adding the following to your Appearance → Custom Design → CSS editor:
.blog .hentry, .archive .hentry {
width: 31%;
height: auto;
}
.blog .hentry .attachment-home-thumb,
.archive .hentry .attachment-home-thumb {
width: 100%;
height: auto;
}
.blog .hentry.four, .archive .hentry.four {
margin-right: 2%;
}
.blog #content {
margin-right: -30px;
}
.infinite-scroll .infinite-wrap,
.infinite-scroll .infinite-loader,
.infinite-scroll #infinite-handle {
clear: inherit;
}
This topic has been closed to new replies.