Tagged: Latest news widget
We are interested in using the latest news widget in the sidebar of our blog. The thumbnails for the category posts we are pulling from are 640×360. Obviously the thumbnails won’t be that big but that is the ratio. How can we change the dimensions of the thumbnail so it fills the with of the column with the title falling below?
Hi!
You’d need to change the “widget” image size to a value equal or higher to “640×360”, you can use this plugin for that:
https://wordpress.org/plugins/simple-image-sizes/
Best regards,
Josue
it was already installed. i changed the dimensions to 640×360. but the thumbnails are the same size in the latest news widget.
Hey!
Now add this code to the Quick CSS:
.news-thumb {
float: none !important;
height: auto;
width: 100%;
}
.news-thumb img{
height: auto;
width: 100%;
float: none !important;
}
Cheers!
Josue
Hey!
Add this:
.inner_sidebar {
margin-left: 0 !important;
}
Cheers!
Josue