Hi
I'm sorry, but Your explanation makes no sense to me. We are probably looking at the site on different screen resolutions and this template is responsive fitting to the screen used. Also there are no margins there at all. It's simply content area locked to max 1600px in width. So those "margins" are a leftovers of the available screen, this cannot be avoided without a big changes to template's code. I advice this changes:
add this to override.css and make sure override is enabled in template settings
- Code: Select all
.single-page .item-info,
.blog-page .item-info {
display: none;
}
.single-page .item-info + .item-body,
.blog-page .item-info + .item-body {
float: none;
width: 100%;
}
#gkSidebar {
padding-left: 0;
width: 18%;
}
#gk-content-wrapper {
width: 82%;
}
.single-page .item-content,
.blog-page .item-content {
max-width: 100%;
}
#gkPageContent {
padding-left: 150px;
padding-right: 150px;
}
I think that's gonna be closest to what You want, but will not work good for every screen width. You will need to play with values of:
- Code: Select all
#gkSidebar {
width: 18%;
}
#gk-content-wrapper {
width: 82%;
}
to make it work for smaller screen widths.
If You wish to use table instead I need to warn You that table is not a responsive solution and will completely destroy the look on mobile devices. Anyway, You just need to use this code in override.css:
- Code: Select all
.single-page .item-info,
.blog-page .item-info {
display: none;
}
and unpublish any module from sidebar (DJ Image Slider currently).