mobile view issue with widget placement on home page
- The topic ‘mobile view issue with widget placement on home page’ is closed to new replies.
Need help? Check out our Support site, then
Hi again,
Well the CSS fix was almost awesome for placing the widget on the top of the home page, but the mobile view is way too skinny. Any fix for that? I have the same problem with my locations page as well.
https://ebbettsgoodtogo.wordpress.com
2/https://ebbettsgoodtogo.wordpress.com/locations-2/
Thanks!
The blog I need help with is: (visible only to logged in users)
Changing layouts on responsive themes is always tough, because of the various browser widths. You could try wrapping the CSS in a media query to it only takes effect on larger monitors, otherwise, you’ll need to account for smaller devices when making customizations. Below is an example of a media query in which you can try wrapping the CSS in.
@media ( min-width: 992px ) {
/* CSS goes in here */
}
Thanks, I’ll give it a shot.