Theme Author
Guido
(@guido07111975)
Hi Christopher,
Add this at page Additional CSS of the Customizer:
#container {max-width:100%; margin:0;}
Guido
I’m not the one who asked. But I was looking for this.
Thank you, Guido. This works wonderfully!
Oh dang, it ALMOST worked wonderfully. Maybe you can help me out?
I want the width to be 80 % on desktop, but 100 % on mobile. Do you maybe know how to do that?
Theme Author
Guido
(@guido07111975)
Hi,
Add this at page Extra CSS of the Customizer:
@media screen and (min-width:768px) {
#container {max-width:80%; margin:0 auto;}
}
I have added a so called media query, so this fix only loads when screen size is 768px or above.
Guido
Theme Author
Guido
(@guido07111975)
@cwburket / @ohrenbaer
FYI: I have updated theme last week and changed alignment from left to centre.
Nowadays most people use small screen devices, so centre alignment is better.
Guido