Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #364621

    Hi!

    I wonder if it’s possible to change the size of the blog icon that is to the left of the blog post? See third link below. I’m trying to change this with the settings in Enfold, but it seems like there isn’t any effect.

    Since I have two pages with bloggposts, see first and second link below, I haven’t selected any of them in the Enfolds Blog Layout settings or in WordPress settings. Could this affect the possibility and the appearance how the blog posts look like? What can I do since there are two blog pages, but only one page to add to the Enfold Blog Layout?

    I would prefer if I could change the size with CSS? Another option is perhaps to remove them completely in some why?

    I also wonder why it’s possible to click on the icon and activate the lightbox?

    Preciate some help! Thanks!

    #364832

    Hi Effektid!

    Your site is under a coming soon plugin it looks like so I could not view your links. Are you using this layout? http://kriesi.at/themes/enfold/blog/blog-single-small/

    If so then you can change the size for that on line 100 in the functions.php file.

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    As for lightbox try opening up /enfold/includes/loop-index.php and change line 121 from this.

    $blog_meta_output = "<a href='{$link}' class='small-preview' title='{$featured_img_desc}'>".$slider.$icon."</a>";
    

    To this.

    $blog_meta_output = "<a href='".avia_image_by_id(get_post_thumbnail_id(), 'large', 'url')."' class='small-preview' title='{$featured_img_desc}'>".$slider.$icon."</a>";
    

    Best regards,
    Elliott

    #365293
    This reply has been marked as private.
    #365836

    Hi!

    to control the size of blog icon, use this in Quick CSS:

    .small-preview img, .big-preview img {
    height: 100px;
    width: 100px;
    }
    .single-post .single-small.with-slider .small-preview {
    height: 100px;
    width: 100px;
    }
    

    Regards,
    Andy

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