Hi,
i added some images to my website. I would like to reduce the width to 80 % in responsive modes?
How can i do that?
kind regards Jak
Hey Jak73,
Please try adding this code in Quick CSS:
@media only screen and (max-width:767px) {
.responsive #top #wrap_all .container {
max-width: 80% !important;
}
}
Best regards,
Nikko
Hi Nikko,
this seems to reduce all images.
How can i just reduce the images like i showed in the screenshot?
kind regards Jak
Hi Jak,
Please try to change the code to:
@media only screen and (max-width:767px) {
#top .av_one_third .avia-video {
max-width: 80%;
margin-left: auto;
margin-right: auto;
padding-bottom: 80%;
}
}
Best regards,
Nikko
Hi Nikko,
thank you very much for your help!
Can we make this work only on the selected page in the private area? So that other pages stay normal?
Kind regards Jak