Sidebar Width Change

I have a very easy and straight forward question, I just want my sidebar to be smaller “width” wise in order to allow the content to take up more of the page.

I’d love for this to be applied everywhere on my website not just to ONE SPECIFIC PAGE.

If you could help me out with this that would be great!

The URL to my site is thevipentrepreneur.com

Hi @lcawley9,

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 -> Activello Options -> Other -> Custom CSS

@media (min-width: 992px){

div.main-content-inner {
width: 70%;
}
div#secondary{
  width: 30%;
}
}

Best Regards,
Movin