Hi!
Could you please tell me how I can add a border like they have on 99u below each blog post?
I know how to add a border but I am struggling with the length of the border. (It always reaches the sidebar) How can I make the border shorter?
Could you also tell me how I can make the blog post feature images smaller? Their width is ok, I just want to reduce their height.
Thx in advance!
best regards,
Julian
Hi aIVIis!
Thank you for using the theme!
You can add a border on the post-delimiter div right after each post. Use this on Quick CSS:
div.post_delimiter {
border-bottom: 1px solid gray;
}
Cheers!
Ismael
hey Ismael,
That’s exactly what I did. My problem is that the border reaches (and touches) the sidebar. How can I make the border shorter?
And how can I make the feature image smaller?
thx
Julian
hey,
I have found the problem! Thx a lot!
Could you please tell me how I can decrease the height of the feature images in the single author big image blog? I’d like a height of 220px.
Hi!
It depends on the blog layout – if you’re using a sidebar search for this line in enfold/functions.php:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
and replace 270 with 220. If you’re using a fullwidth layout search for this line:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );
and replace 360 with 220. Afterwards regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
If you don’t want to edit the theme files you can install a plugin like: http://wordpress.org/plugins/simple-image-sizes/ to change the thumbnail sizes.
Best regards,
Peter