Tagged: sidebar width
Dear Sir/ Madam, hope this message finds you well. Is there any chance to decrease width of the right sidebar by 50% (or any other numerical value), without affecting the width of the main content panel? Thank you for your time.
Hi vj.beluha,
Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.site-content #primary { -ms-flex: 0 0 70%; flex: 0 0 70%; max-width: 70%; } .site-content #secondary { -ms-flex: 0 0 30%; flex: 0 0 30%; max-width: 30%; }
we have made the combination of 70% and 30%. you have change the percent of your own but make sure the total percent should be 100%.
Thanks