Hi,
i have an issue with a wrong padding in responsive view.
The distances between the menu and the dividing line below it are shifted. This error does not occur in the entire responsive mode, but only in a specific area. I have made two screenshots that show the problem.
How can I fix this?
kind regards
Jak
Hey Jak73,
You can simply change the values in your media queries, like this:
@media (min-width: 600px) and (max-width: 767px) {
.avia-image-container.gallerie-image img {
max-height: 450px;
margin-top: 35px !important;
margin-bottom: 18px;
}
}
Could be made to apply to larger screens like this:
@media (min-width: 600px) and (max-width: 990px) {
.avia-image-container.gallerie-image img {
max-height: 450px;
margin-top: 35px !important;
margin-bottom: 18px;
}
}
Best regards,
Rikard
Hi Rikard,
yes, that works, but there is still no space between the burger menue and the border below in this resolution.
How can i add the space there in this specific responsive view?
kind regards
Jak