Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #262779

    Hello,

    I am having issues using the section box. After defining the height using an ID. The content are not displayed on it.

    #263126

    Hi Morris!

    Thank you for visiting the support forum!

    Do you mind if we take a look at the website? Please use media query on Quick CSS to define another height for mobile device.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    
    }

    Best regards,
    Ismael

    #263256
    This reply has been marked as private.
    #263290

    And also how do i disable parrallax efect for only mobile devices using the color section.

    #263550

    Hey!

    Please add following code to Quick CSS instead

    @media only screen and (max-width: 767px) {
    #mysectiona {
    min-height: 140px;
    height: 140px;
    }
    div.av-parallax {
    -webkit-transform: none!important;
    }}

    Regards,
    Yigit

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