Tagged: enfoldapp
Hi, Is there a way to reduce the height of the header color section with an image background? When viewed on mobile, the section has too much space and the devices image seems to float. We’d like to achieve the desktop view effect in smaller devices too if possible. Site link is in private content.
Hey Renard,
Thank you for the inquiry.
You can add this css code to decrease the height of the color section and adjust the position of the floating image:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #top #wrap_all .flex_column.av-lu0i0x4l-8e878727dd70b1d7d7004e10aa47c98c {
margin-top: -180px;
margin-bottom: -50px;
}
.responsive #top.page-id-261 #av_section_1 {
height: 400px;
}
}
Best regards,
Ismael
Hi, thanks for the help. It worked perfectly now.