Remove space between content and sidebar for Sparkling theme

Love your theme!

I have decreased the sidebar and moved it to the left.
how can i remove the space between content and sidebar.
orangelabdesign.nl/grafisch-vormgeving/

Sorry, i mean i removed the sidebar to the right

Hi, I have the same problem. I wish to increase the width of my text area and decrease the sidebar width. Please help!
My Website looks ugly with such a fat sidebar.

chino, I added the following code to my style.css. You can see how it looks on my website. Not sure if it breaks other things.

.col-md-8 {
    width: 80%;
}
.col-md-4 {
    width: 20%;
}

Drexo,

Thanks! it works perfectly!
Keep up the good work.

No, it does break for not very wide screens. Will keep looking for a solution.

Okay, this seems to work on any screen size:

@media (min-width: 992px) {
	.col-md-8 {
		width: 75.88%;
	}
	.col-md-4 {
		width: 24.12%;
	}
}
@media (min-width: 1200px) {
	.col-md-8 {
		width: 80%;
	}
	.col-md-4 {
		width: 20%;
	}
}

@drexo

The new code works perfectly!
Yes indeed it was breaking on small screens.
Thanks! Keep up the good work!