Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #253985

    Hi Support,

    How can i make the recent portfolio widget thumbnails bigger?
    Want em to fill the whole sidebar “Center” and just have the title under them?

    It is going to present all the models that are in the portfolio so we only need a bigger picture and the name under that :-)

    Cheers!

    #253987
    This reply has been marked as private.
    #254384

    Hey!

    It looks like your website is currently down – http://www.downforeveryoneorjustme.com/http://hyrenhunk.sokonline.se/
    Please try adding following code to Quick CSS in Enfold theme options under Styling tab

    .news-thumb {
    height: 130px;
    width: 130px; }
    .news-thumb img, .news-thumb img {
    width: 122px;
    height: 122px;
    }

    Then go to Appearance > Editor and open functions.php file and find

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

    and change width and height to 122px and regenerate thumbnails using – http://wordpress.org/plugins/regenerate-thumbnails/
    Regards,
    Yigit

    #255026

    Hi Yigit,
    I did everything as instructed but it didn’t work. :-( any idea?

    Cheers!
    M

    #255028
    This reply has been marked as private.
    #255959

    Hi!

    I fixed it. I replaced the code in functions.php with:

    
    add_action('after_setup_theme','avia_change_image_sizes');
    function avia_change_image_sizes(){
    global $avia_config;
    $avia_config['imgSize']['widget'] = array('width'=>122,  'height'=>122); // small preview pics eg sidebar news
    }
    

    and changed the css code to:

    
    #top .image_size_widget .news-thumb {
    height: 130px;
    width: 130px; 
    }
    
    #top  .image_size_widget .news-thumb img {
    width: 122px;
    height: 122px;
    }
    

    Best regards,
    Peter

    #256086

    Thank you so mutch Peter!

    How can i get the news-headline center and maby a bit bigger under the picture and remove the date?

    Cheers!

    #256091

    Hi!

    Please add following code to Quick CSS

    span.news-time {
    display: none!important;
    }
    #top .image_size_widget .news-thumb { margin-right: 30%; }
    .news-headline {
    overflow: visible;
    margin-left: 17%;
    font-size: 14px;
    }

    Cheers!
    Yigit

    #256099

    Thanks Yigit and Peter for you awesome support,
    You guys are great hope you have a fantastic weekend!

    Cheers!
    M

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Recent Portfolio Widget – Thumbnails Size’ is closed to new replies.