Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #651685

    Hello. Please look at this one-pager site and view the responsiveness when you shrink the browser down. Specifically, as the browser gets smaller the text on the landing page hides under the side menu.

    Thank you,
    Ryan

    #651723

    Hey rlogan2334,

    this is because you are using this code:

    #top.page-id-126 #av_section_1 .av_textblock_section .avia_textblock>p {
    left: -120px;
    }
    

    change the value until it fits to you. Add media queries to your code for mobile devices, like:

    @media only screen 
      and (min-width: 414px) 
      and (max-width: 736px) {
    #top.page-id-126 #av_section_1 .av_textblock_section .avia_textblock>p {
    left: -10px;
    }}
    

    Best regards,
    Andy

    #651771

    Thank you. Good to go!

    #652181

    Hi,

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Responsiveness’ is closed to new replies.