Передадим цвет в body
Это прописываем в шапке
|
1 |
<body <?php $APPLICATION->ShowViewContent('bg_white'); ?>></div> |
Если необходимо установить цвет из тела страницы
|
1 2 3 4 |
<?php // Устанавливаем стиль для bg_white $APPLICATION->AddViewContent('bg_white', 'style="background: #fff!important;"'); ?> |
Если необходимо установить из шаблона компонента
|
1 2 |
<?php $this->SetViewTarget('bg_white');?>style="background: #fff!important;"<?php $this->EndViewTarget();?> <?php $this->SetViewTarget('elem_detail');?>style="display:none"<?php $this->EndViewTarget();?> |
