Thread Starter
kjf127
(@kjf127)
I found your other post with the sidebar suggestion of
#content {width:68%;}
#footer {width:68%;}
#sidebar {width:22%;}
I copied this exactly and the mobile view on Android didn’t work. I welcome your advice, thanks, Kevin
Thread Starter
kjf127
(@kjf127)
and I’m using: #container {max-width:1100px;} to make the center section larger. Thanks
Theme Author
Guido
(@guido07111975)
Hi Kevin,
If you’re adding this at page Additional CSS of the Customizer, this CSS will also override the mobile styling.
So if you want to apply it for the normal screen only, you must add a so called media query:
@media screen and (min-width:768px) {
#container {max-width:1100px;}
#content {width:68%;}
#footer {width:68%;}
#sidebar {width:22%;}
}
Change the width of these elements to your needs, these are the default widths (except the #container).
The total width of #content and #footer + #sidebar must be 90%.
Guido
Thread Starter
kjf127
(@kjf127)
Hi Guido, thank you very much! Have a nice weekend, Kevin