Change sidebar width

Hello! First of all, thanks for making such a flexible and incredible theme.

I’m trying to make a page with a gallery of images, which layout leaves some space to the right. I was thinking about adding some HTML to the sidebar, but when I enable it it’s just too big. I was wondering if there’s any way I could change the width of the sidebar so i can make is smaller ?

Thanks!

Hi @andlenz,

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

You can try changing width of sidebar by adding the following CSS code in the Custom CSS option of your theme on the below path.

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


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

Best Regards,
Movin