How do I keep the socket text from dropping down on the iPhone?
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 480px) {
#socket .container {
width: 90%;
}
}
Cheers!
Josue
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?
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
Thanks Josue. I still have the space below the socket. Any way to clear that up?
Hey!
It’s happening because of this code you have in Quick CSS:
#advanced_menu_toggle,
#advanced_menu_hide { top: 120%; }
Regards,
Josue
Thanks. Fixed it by removing the quick css
You are welcome, always glad to help :)
Regards,
Josue