Hi Heinrich,
I’ve checked the site and I can’t seem to find the margin.
Perhaps you meant the padding on the left and the right side of the .container
?
This padding-left: 15px;
and padding-right: 15px;
applied from the bootstrap.css used in your site causes a weird white gap.
You can try using this CSS code to remove it.
.container {
padding-left: 0px;
padding-right: 0px;
}
Let us know if it works for you.:)
A wise man once said:
"Have you cleared your cache?"