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

    How do I keep the socket text from dropping down on the iPhone?

    #288311

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 480px) {
    #socket .container {
        width: 90%;
    }
    }

    Cheers! 
    Josue

    #288325

    If I set the width to 110% it’ll all fit on one line but not fully visible. I noticed that on the iPhone I’m scrolling past the socket which I can’t do on desktop or tablet. Any other suggestions?

    #288350

    Hi!

    You could try reducing its font size:

    @media only screen and (max-width: 480px) {
    #socket .container {
        width: 100%;
        font-size: 9px;
    }
    }

    To remove that space:

    @media only screen and (max-width: 480px) {
    #top {
        overflow: visible !important;
    }
    }

    Best regards,
    Josue

    #288511

    Thanks Josue. I still have the space below the socket. Any way to clear that up?

    #288631

    Hey!

    It’s happening because of this code you have in Quick CSS:

    #advanced_menu_toggle,
    #advanced_menu_hide { top: 120%; } 
    

    Regards,
    Josue

    #289736

    Thanks. Fixed it by removing the quick css

    #289751

    You are welcome, always glad to help :)

    Regards,
    Josue

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