Sidebar width, create more space

Hello, how can I shrink my sidebar and increase the space between the body and the sidebar.

Alternatively, and maybe this would be easier, how could I add a light grey vertical line between the sidebar and body?

Thanks!

Hi @djgl13,

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

@media (min-width: 992px){
#secondary {
    width: 31%;
    padding-left: 2%;
    border-left: 1px solid #eee;
}

}

Best Regards,
Movin