Hi, I added this code (that you guys gave me) to pull the description which worked great (see image)
$excerpt = ! empty( $entry->post_excerpt ) ? $entry->post_excerpt : avia_backend_truncate( $entry->post_content, apply_filters( ‘avf_magazine_excerpt_length’, 60 ), apply_filters( ‘avf_magazine_excerpt_delimiter’, ‘ ‘ ), ‘…’, true, ” );
I would like to make the whole element larger. Bigger thumbnail and text. Is there a way to do this?
Thanks
Hey,
Thanks for contacting us!
Could you please post a screenshot of the changes you would like to make and a link of the page where we can see the element? :)
Best regards,
Yigit
Int a nutshell the default thumbnails and copy that we are pulling is very small (in the magazine element), we would like to make it larger. I added the page and login information in the private area.
Hi,
Thank you for the update.
To make the default thumbnails and copy larger in the magazine element, please try the following css code.
.av-magazine-thumbnail {
width: 180px;
min-height: 180px;
}
.av-magazine-thumbnail img {
height: 180px;
width: 180px;
}
.av-magazine .av-magazine-content-wrap .av-magazine-title {
font-size: 2rem;
line-height: 1.4em;
}
.av-magazine .av-magazine-content {
font-size: 1rem;
line-height: 1.3em;
}
This code will increase the font size of the copy and set the width and height of the thumbnails to 180px. You can adjust these values as needed to achieve the desired size for the thumbnails and content.
I hope this helps! Let me know if you have any other questions or if you need further assistance.
Best regards,
Ismael