Hi,
i’m trying to make my this page responsible for smaller screen size.
I added an image with some other elements.
On my larger screen it looks nice, but on my laptop the image and the other elements on this page get cut of.
How can i fix it?
kind regards
Jak
Hey Jak73,
Thank you for the inquiry.
You may need to set a maximum height for the image on smaller screens. Please try this css code:
@media only screen and (max-width: 1366px) {
/* Add your Mobile Styles here */
.avia-image-container.av-lyy4hw96-14d4598bbbae6a600bb36d5d8e5e1681 img {
max-height: 300px;
width: auto;
}
}
How do you plan to implement the functionality for the navigation you created manually? As we mentioned in the previous thread, you might be better off using gallery, slider, or layer slider elements that are readily available in the theme instead of manually building this gallery or slideshow.
Best regards,
Ismael
Hi Ismael,
thank you. How can i add a class to it, to select specific pages?
kind regards Jak