-
AuthorPosts
-
March 19, 2016 at 1:59 pm #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.
RobertMarch 25, 2016 at 6:45 am #603565Hey 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!
IsmaelMarch 29, 2016 at 12:03 pm #604400Hi,
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.
March 29, 2016 at 12:06 pm #604402sorry, correct link below.
March 29, 2016 at 3:01 pm #604593Hi!
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-599297Regards,
YigitMarch 29, 2016 at 3:31 pm #604630Hi 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!
March 29, 2016 at 3:34 pm #604632And 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.
March 29, 2016 at 11:34 pm #604848Hi 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.March 31, 2016 at 8:23 am #605697Hi!
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 -
AuthorPosts
- You must be logged in to reply to this topic.