Sidebar size

First time using Wordpress and your Sparkling theme. Have two sites done and they look and work great. Only thing I would like to modify is the width of the side bar. It appears to be set at 33%. Is there a way to make it 25%?

Hi @jeffg23,

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 the latest version of Sparkling theme on the below path.

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

@media (min-width: 992px) {
.main-content-inner.col-sm-12.col-md-8 {
width: 75%;
}
div#secondary {
width: 25%;
}
}

Best Regards,
Movin