Widget and Content area

How I can make more widely Content area and make smaller widget area? Which line or which code in the CSS is responsible for this?

Thank you in advance

Hi @sinedo,

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

You can achieve this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

div#primary {
  width: 70%;
}
div#secondary {
  width: 30%;
}

Change the value of width in the above code to whatever you want to set.

Best Regards,
Movin