-
AuthorPosts
-
August 21, 2014 at 11:09 pm #307564
Hi,
Please could you show me how to make the thumbnails bigger and with a colour border? Also how do I remove the date that is displayed next to the thumbnail?
Thanks in advance.
August 22, 2014 at 10:38 am #307751Hi Wils1234!
1) You can add a background color to the preview thumbnail div element – insert the code into the child theme style.css or quick css field:
.av-magazine-thumbnail { background-color: #333; }
and change the color value if necessary.
2) You can hide the date with this code:
#top .main_color .av-magazine-time{ display: none; }
3) Use this code to change the thumbnail size:
#top .av-magazine-thumbnail, #top .av-magazine-thumbnail a, #top .av-magazine-thumbnail a img { width: 100px; min-height: 100px; }
and replace 100px with your thumbnail size. If the images display blurry you may increase the thumbnail size of the images – insert this code into the child theme functions.php (or enfold/functions.php) file:
add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2); function avia_magazine_thumbnail($atts, $magazine){ $atts['image_size']['small'] = 'square'; return $atts; }
and replace “square” with another thumbnail size like: ‘masonry’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”
Best regards,
PeterJune 30, 2015 at 7:29 pm #466652I am able to change the size of the thumbnail but then the text is not aligned to the image any more. Any suggestions?
July 1, 2015 at 5:18 pm #467118Hi!
Send us a link to your page and take a screenshot highlighting the exact changes your trying to do and we’ll take a look. You can set your reply as private if you wish.
Cheers!
Elliott- This reply was modified 9 years, 4 months ago by Elliott.
July 1, 2015 at 6:43 pm #467170Elliott,
Here is the link : http://shopthegatewaywestloop.com/sales-events/
when the thumbnail increases in size the text and alignment go out of alignment:(
We are also experiencing issues with chrome. It works on macs but not pc.July 1, 2015 at 7:06 pm #467178Hey!
Please add the following class .av-magazine-content-wrap the same size you have added to your thumbnails.
Cheers!
BasilisJuly 1, 2015 at 7:27 pm #467189Thanks that worked!
-
AuthorPosts
- The topic ‘Magazine thumbnails’ is closed to new replies.