Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1344073

    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

    #1344091

    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

    #1344097

    Hi Nikko,

    this seems to reduce all images.
    How can i just reduce the images like i showed in the screenshot?

    kind regards Jak

    • This reply was modified 2 years, 8 months ago by Jak73.
    #1344187

    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

    #1344247

    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

    #1344294

    Hi,
    To make the above solution work on the one page only please adjust to this:

    @media only screen and (max-width:767px) {
      #top.page-id-600 .av_one_third .avia-video {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 80%;
      }
    }

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.