Tagged: magazine element, magazine element excerpt
HI
A couple of questions
I would like to show the excerpt in the magazine element.
I found the code here: https://kriesi.at/support/topic/magazine-excerpt-2/ but it’s not working for me.
I have the magazine.php in a child theme. Can you take a look at my code?
I would also like to be able to have it display in 2 columns? is that possible?
I know I can use the portfolio grid, but that puts the image at the top instead of on the side.
Is it possible to modify that? On the page below I have 2 magazine elements shown by date, but maybe there is a better way to do it?
Thanks
on https://kriesi.at/themes/enfold-2017/elements/magazine/ you want to preserve the bigger image post and have on the smaller images a two column view?
you can have this by css only – but you had to break earlier to responsive case to have enough space for showing the articles with smaller images:
#top .av-magazine-sideshow:before,
#top .av-magazine-sideshow:after {
display: none;
}
#top .av-magazine-sideshow {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
#top .av-magazine-sideshow .av-magazine-entry {
flex: 0 1 48%;
width: unset;
}