Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #317096

    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?

    #317101

    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

    #317103

    it was already installed. i changed the dimensions to 640×360. but the thumbnails are the same size in the latest news widget.

    #317726

    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

    #317790
    This reply has been marked as private.
    #317834

    Hey!

    Add this:

    .inner_sidebar {
    margin-left: 0 !important;
    }

    Cheers!
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.