It seems that on mobile view the video and first tour package is cut off when viewing my homepage.
Hey sunseekertours,
Thank you for the inquiry.
You may need to disable the top margin offset of the first column on mobile view with css media queries. It is currently set to -200px. The following documentation should help.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael
Hi Ismael,
I wanted to keep that offset for desktop. How would that just be applied to desktop and not mobile and tablet so things would be visable?
Hi,
Thank you for the update.
You can use this code in the Quick CSS field to remove the top margin of the first row on mobile view.
@media only screen and (max-width: 767px) {
.home #av_section_1 .flex_column_table {
margin-top: 0 !important;
}
}
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
Ismael
Thanks for that code.