CSS Editing in Mobile Theme – Turn it Off!
-
When I edited the CSS to move one of my sidebars to the left side of my page, I unchecked the box that said “use in mobile theme”, but it’s still applying and the page looks terrible on my phone. All the text overlaps.
Is there another way to force the CSS customization to not affect the mobile presentation?
It looks really terrible and is affecting a lot of my readers, so any help is greatly appreciated.
Thank you in advance.
The blog I need help with is: (visible only to logged in users)
-
You have added this:
.three-column #secondary { margin-left: 0; position: absolute; } .three-column #primary { margin-left: 280px; }Turn it to this:
@media screen and (min-width: 1241px) { .three-column #secondary { margin-left: 0; position: absolute; } .three-column #primary { margin-left: 280px; } } -
-
You’re welcome.
(“Quick response” is a matter of coincidence: you get a reply fast if someone who can answer your question happens to be around when you post.)
- The topic ‘CSS Editing in Mobile Theme – Turn it Off!’ is closed to new replies.