Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1488499

    HI, the content for my tab sections are getting cut off on desktop and mobile. I have attached screenshots.

    #1488517

    Hey lauragale2020,

    Thank you for the inquiry.

    Adding this css code should help limit the content within the tab section element.

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .av-layout-tab-inner .container {
          width: 100vw;
          max-width: 85%;
          margin: 0 auto;
      }
    }
    

    Result:

    sc

    Best regards,
    Ismael

    #1488553

    Hi, desktop view is also being effected. This code says only mobile and tablet…

    #1488583

    Hi,

    To correct the display on desktop view, please add this css code:

    .av-layout-tab-inner .container {
        max-width: 100vw;
    }

    Make sure to add this before the previous css code above.

    Result:

    View post on imgur.com

    Best regards,
    Ismael

    #1488626

    Thanks, the code worked for mobile but not desktop. I put the desktop code before the mobile as mentioned. Please advise :)

    #1488640

    Hi,

    Thank you for the update.

    It’s possible that there are unclosed or invalid css media queries in the Quick CSS field. Please make sure all css rules are valid and properly closed. If you can provide the login details, we’ll be happy to check it for you.

    Best regards,
    Ismael

    #1488678

    Sure, I have added a login link to the private section.

    #1488704

    Hi,

    Thank you for the info.

    We adjusted the code in the Quick CSS field a bit. It should be working correctly now.

    .responsive .av-layout-tab-inner .container {
        max-width: 100vw;
    }
    

    Best regards,
    Ismael

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