Mobile mode
-
I did some custom CSS and I did not check the apply to mobile box neither did I activate the sela theme for mobile design but in mobile mode both sela and the custom css are activated. Why? Blog is https://ristudentscouncil.wordpress.com/
The blog I need help with is: (visible only to logged in users)
-
I’m having a hard time finding exactly what your custom CSS is hiding. Can you link me to a specific post that has the type of content that is being targeted by the opacity:0; in your code?
The Sela theme is what we call “mobile-ready” and responsively designed, which means that it is optimized for viewing on all browser sizes. The theme will automatically rearrange itself so that its easy to view and navigate on mobile devices.
The check box to include your Custom CSS in mobile only applies to the CSS code you explicitly include in the CSS editor. And the mobile theme available at Tools > Mobile is for this theme:
http://en.support.wordpress.com/themes/mobile-themes/
You can use this theme if you don’t like the look of your responsive theme, or if your chosen theme is not a responsively designed one.
-
-
I want to deactivate the sela theme and the custom css Ive written for the mobile theme. But the check box for enable mobile theme doesnt seem to be hiding the formatting.
-
I want to deactivate the sela theme and the custom css Ive written for the mobile theme. But the check box for enable mobile theme doesnt seem to be hiding the formatting.
-
Are you trying to enable the mobile theme instead? The CSS you include in the CSS pane is applied to the theme as a whole. In order for it not to affect the mobile view, you’ll need to add a media query. Try this:
@media screen and (min-width:800px) { #primary .entry-header, #primary .entry-content, #primary .entry-summary { width: 800px; } }Does that do what you want?
-
-
- The topic ‘Mobile mode’ is closed to new replies.