Hey there Marcel,
How are you doing today?
I’ve quickly checked the theme and you can use Full Width page template when creating/editing pages in your admin area which will remove the sidebar from your pages, see screenshot http://screencast.com/t/Cn5JFDbubGw.
If this doesn’t work or you want this removed on some other places please let me know and I’ll help you out with doing that with some custom CSS.
Best regards,
Bojan
Hey Bojan,
Thx for your support!
This isn’t what I meant, I want the whole site in full wide, incl. header. Now its 760px or so.
See my temp site http://www.fam-buch.nl/limo/
regards,
Marcel
Hey again Marcel,
This is definitely possible but it would require changing the width of the containers on larger screens which would probably require making quite a few additional modifications so if you want to do this we can start by making container width 100% and see what else it needs to be changed.
Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
@media (min-width: 1024px) {
.container {
width: 100%;
}
}
This should make page container width on all resolutions above 1024 to 100% in width, this could cause elements that have max with defined or with defined width in px not to properly expand so you’ll have to make additional changes to those elements as well.
Best regards,
Bojan
Perfect!
Thx a lot Bojan!
With this I can make further changes easy.
The containers are in %, looks good for now.
regards
Marcel