I have successfully hidden all the meta data using the magazine element, the item I’d love help with is centering the thumbnail and the title text on the vertical…
So as it is right now, hiding the meta data simply just hides it… but leaves a blank space where it once was…
What do you think?
You can see what I’m talking about on this page, scrolling down to the professional journal.
Thanks!
Hey Dave,
Try this code in the General Styling > Quick CSS field:
#top.home .avia-builder-el-24 .av-magazine .av-magazine-content-wrap .av-magazine-title {
line-height: 3.3em !important;
}
Please see screenshot in Private Content area.
Best regards,
Mike
That worked, wow! Thank you Mike!… is there a way to accommodate screen sizes?
https://www.dropbox.com/s/zvp8deji0c1ptsi/Screenshot%202018-05-20%2012.44.58.png?dl=0
Hi,
Please try this also:
@media only screen and (max-width: 1023px) {
#top.home .avia-builder-el-24 .av-magazine .av-magazine-content-wrap .av-magazine-title {
line-height: 6.3em !important;
font-size: 10px !important;
}
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
#top.home .avia-builder-el-24 .av-magazine .av-magazine-content-wrap .av-magazine-title {
line-height: 3.3em !important;
font-size: 16px !important;
}
}
Best regards,
Mike
Thank you Mike. I think this last bit will give me what I need to play around with.
I appreciate the help big time!