Tagged: , ,

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

    Hi there,

    Thanks for the lovely theme. I set up the slider at it’s working perfectly. What I would like to change however is the alignment of caption. Predefined are those options: bottom, center, left, right either frame or no frame.

    I would love to have centered bottom but perhaps 10% above the bottom of the picture. Please, see second picture on my website.

    Thank you a ton for your help.
    Robert

    #603565

    Hey sarmaku!

    Thank you for using Enfold and sorry for the delay.

    Adjust the caption position in the Quick CSS field:

    .slideshow_align_caption {
        vertical-align: bottom;
    }

    Cheers!
    Ismael

    #604400

    Hi,

    thank you for the answer.

    I would have one more question if possible. When you click on the link provided it guides you to one category I use for my blog. Would it be possible to display only a few posts on one page (not all of them) and also a preview of the articles (not the whole article)?

    Thank you for getting back to me quickly.

    #604402

    sorry, correct link below.

    #604593

    Hi!

    Please go to Settings > Reading and choose how many posts you would like to display.
    Then, please refer to this post – https://kriesi.at/support/topic/add-read-more-text-on-grid-blog-archive-page/#post-599297

    Regards,
    Yigit

    #604630

    Hi Yigit,

    if you check my blog – you only see the previews, which is exactly what I wanted. The categories however display all the posts within the category.

    How can I do the second link to display the same as the first link?

    thanks!

    #604632

    And a last question would be – what is the overall size of the blog post image? The big one in the preview? Screenshot in the link.

    #604848

    Hi Ismael,

    thank you for the quick CSS change. What if I only want to change one slide? I actually liked the positioning of the first one.

    thank you.
    R.

    #605697

    Hi!

    What if I only want to change one slide? I actually liked the positioning of the first one.

    Each slide has its own unique id so you can use something like this for the second slide:

    .slide-2 .slideshow_align_caption {
        vertical-align: bottom;
    }

    How can I do the second link to display the same as the first link?

    Add this in the functions.php file in order to set the archive blog layout to grid style:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }

    And a last question would be – what is the overall size of the blog post image? The big one in the preview? Screenshot in the link.

    You can find this code in the functions.php which sets the maximum width and height for the featured image:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    

    Cheers!
    Ismael

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