How can I reduce the width of a text box on my webpage?

Hi All,

I don’t know how to narrow the width of the text box on a page. Right now, the text goes on for across the whole width of the page. How do I narrow that?

Here’s the page: https://flywaydoo.com/pages/contact

Thanks

@Bapak

Please add the following code at the bottom of your assets/theme.scss.liquid file.

@media only screen and (min-width: 750px){
.template-page .content-block{ padding-left: 0px !important; width: 70%; }
}

Hope this works.

Thanks!

Awesome, thanks!