Responsive.css file "max-width" settings causing undesired layouts
Curious as to why the max-width for .section_wrapper, .container has been set to a fixed pixel value for all screen sizes below 768px. Please see line 211 of responsive.css:
.section_wrapper, .container, .four.columns { max-width: 260px !important; } (these are very broad and apply to every page!)
There are other examples throughout the responsive stylesheets and the effect is that the content is being limited to a tiny portion of the mobile device's screen. I am having to do a TON of customizing to try to override these settings to a max width of 100% and it's a very time consuming and frustrating process. I can't imagine that this is what your designers intended?
Is there something that I'm missing? A setting in the options panel or an easier way to bulk override...? Any shortcuts would be appreciated!
P.S. it seems to be a bigger problem now that I've updated to 9.2 (I was behind almost 10 versions), not sure if something was changed, but for example an image that spans two-third columns on a desktop used to span full width for responsive and now it has a limited width of 260px.
Not sure if that helps you understand any better.
Thank you,
Susana
Comments
this line is for mobile devices only. It's not for all devices under 768px. If you will look into another place, you see below css:
Thanks!