Hi
in Aaron, I am using media queries at certain widths to make sure that the content is wide enough. But since the child theme style.css is loaded after, it is overwriting these rules.
In the child theme, you have these two passages that is overwriting the parent theme’s mobile width.
These two changes the width of the main content and the sidebar, no matter what the size of the browser window is.
.content-area {
float: left;
margin: 0 -25% 0 0%;
padding: 1% 2% 0 2%;
width: 72%;
}
and
.site-content .widget-area {
float: right;
margin: 1% 2% 0 2%;
padding: 1% 2% 0 2%;
overflow: hidden;
width: 28%;
}
You can try wrapping these two inside
@media screen and (min-width: 1100px){
}
Then the widths should only affect browser windows more than 1100px wide.
You might find this to be too wide, you can change the number to anything you want.