Width columns

Hello,

I start using your template that I find very complete and very well done.
For me the only thing I would like to change is the width of the columns of the homepage. The text is too narrow.
I would like to replace the width of col-md-4 by a col-md-6 but I can not find which file I have to modify in my child theme

Hey there,

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

The width adjustment would be done via CSS.
You can change the width of .col-md-4 with the following CSS

/*.col-md-4 with*/
.col-md-4{
  width:50%;
}

If you to do this on the home page only, you can add the .home class.

/*.col-md-4 with*/
.home .col-md-4{
  width:50%;
}

Best regards,
Support.