How to remain left sidebar sticky when resize page width?

Hi! How to remain left sidebar sticky when resize page width? Today when I recize page the left sidebar
go down automatically. He always placed under blog posts. The width of my sidebar is something about 200 px only. I need it to be on left side of the blog posts always!

With bestregards,
Kranmer

Hi Kranmer,

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

div#secondary {
    width: 33.33333333%;
    float: left;
    clear: none;
}
.main-content-inner.col-sm-12.col-md-8 {
    width: 66.66666667%;
    float: right;
}

Best Regards,
Movin

Thank you! It works!

You are most welcome here :slight_smile: