Modifying Companies.view

Hello CS-Gurus,

On my companies.view page, I want to increase the width of the "contact information" so as to fit some large emails on one row. Any idea how this can be done?

Thanks

The main template is located here:

design/themes/responsive/templates/views/companies/view.tpl

Thanks eCom. I have found the template but cannot workout how to change the width of the column "contact information". Any ideas?

Thanks

E.g. with CSS. Try to add the following code to the CSS section of the Theme editor

.ty-company-detail__info .ty-company-detail_info-first {
    margin-right: 5%;    max-width: 500px;
}

Worked like a charm!! Thanks a million eCom

You are welcome! :)