Space between content and sidbar

How can I create a space between the content and the sidebar?

Hi @granus,

I hope you are well today and thank you for your question.

There is already a space between content and sidebar but if you want to increase it then you can do so by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Theme Options -> Other -> Custom CSS

@media (min-width: 992px){

	#primary {
    width: 63%;
}
div#secondary {
    float: right;
}
}

Best Regards,
Movin