Remove The Promo Text Space

Hi, I want to make the product title and information can be fullfill the right side of the product details page, then, need to remove the space for "promo text", anyone know how to do ? Thanks !

remove-promo-text.png

Hello michael
In the file
/design/themes/responsive/templates/blocks/product_templates/default_template.tpl
can try to delete the content of hook "products: promo_text"
or in your own addon, overwrite it so that it does not bother you.
Best regards
Robert

Hello michael
In the file
/design/themes/responsive/templates/blocks/product_templates/default_template.tpl
can try to delete the content of hook "products: promo_text"
or in your own addon, overwrite it so that it does not bother you.
Best regards
Robert

Thanks ! It doesn't work, I think need to edit some css file, any other ideas ?

Please share or PM URL of this page

Please share or PM URL of this page

Thanks, already PM to you, please check.

Please add the following code to the CSS section of the Theme editor

@media (min-width: 1224px) {
    .ty-product-detail .ty-product-block__left {
        padding-right: 0px;
    }
}

Please add the following code to the CSS section of the Theme editor

@media (min-width: 1224px) {
    .ty-product-detail .ty-product-block__left {
        padding-right: 0px;
    }
}

Thank you very much ! Fixed very well !

You are welcome! :)