Hey guys,
I have a problem with the portfolio galery on mobile devices. I installed the photography theme and added pictures/galleries into the portfolio function. On my main page there is a masonry gallery overview, which links to single galleries – everything is fine there. But when you click and load a sigle gallery, the images are cropped in the mobile view. Is there any way to fix this with a css code? I want the images shown in full height if possible.
Link to the page provided in private section.
Thank you very much in advance. Best regards.
Hey therooob,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 479px) {
.responsive .av-horizontal-gallery-inner {
height: 70vh !important;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.responsive .av-horizontal-gallery-inner {
height: 100vh !important;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Thank you very much, it worked perfectly!