Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23325

    Hello. Regarding the sidebar/footer widget that displays the latest posts / portfolio items. How do you… (1) Remove the thumbnail border? (2) How can I create a larger thumbnail image? I’m using the resize image plugin, but I’m not sure what size thumbnail the widget is using? Thanks.

    #119379

    Hi,

    Add this on your custom.css

    .news-thumb {
    border: none;
    }

    To resize the thumbnail, go to functions.php then find this code

    $avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news

    Add this on your custom.css. Change the width and height according to the thumbnail size then regenerate the thumbnails.

    .image_size_widget .news-thumb {
    height: 36px;
    width: 36px;
    }

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Sidebar Latest Ports/Portfolio Thumbnails’ is closed to new replies.