When I view my site on an iPhone (shutterLIVING.com) the phone number goes over 2 lines.
However when i was on the old 2.0 theme it fit on one line, any ideas why, or how i can get it to fit on one line?
Hey Jamie A!
Add this to Quick CSS or custom CSS
@media only screen and (max-width:360px) {
#header .av_phone_active_right .container{
width: 300px !important;
margin-left: 10px;
}
#header .phone-info {
width: 300px;
}
}
Cheers!
Arvish
This worked great, Although the text is now not centred, how do i centre the text on an iPhone
Hi!
Please add following code to Quick CSS as well and adjust if needed
@media only screen and (max-width: 480px) {
.phone-info span { margin-left: -14px!important; }}
Best regards,
Yigit
Perfect – Resolved!