Атаман 460 06/03/2019 12:21 PM Добрый! Подскажите, как сузить шапку в 4 ? Share this post Link to post
Lesovsky 162 06/03/2019 12:33 PM Открыть шаблон Core / front / global / globalTemplate Найти: <div id='ipsLayout_header' class='ipsClearfix'> {template="updateWarning" app="core" group="global" params=""} {{if !\in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}{template="mobileNavBar" app="core" group="global" params=""}{{endif}} <header> <div class='ipsLayout_container'> {template="logo" app="core" group="global" params=""} {{if !\in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}{template="userBar" app="core" group="global" params=""}{{endif}} </div> </header> {template="navBar" app="core" group="global" params=""} </div> Обернуть в:<div class='ipsLayout_container'> </div>Найти: <header> <div class='ipsLayout_container'> {template="logo" app="core" group="global" params=""} {{if !\in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}{template="userBar" app="core" group="global" params=""}{{endif}} </div> </header> Заменить: <header> <div class='ipsLayout_container1'> {template="logo" app="core" group="global" params=""} {{if !\in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}{template="userBar" app="core" group="global" params=""}{{endif}} </div> </header> Ну или просто удалить div с ipsLayout_container.В итоге получится: <div class='ipsLayout_container'> <div id='ipsLayout_header' class='ipsClearfix'> {template="updateWarning" app="core" group="global" params=""} {{if !\in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}{template="mobileNavBar" app="core" group="global" params=""}{{endif}} <header> <div class='ipsLayout_container1'> {template="logo" app="core" group="global" params=""} {{if !\in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}}{template="userBar" app="core" group="global" params=""}{{endif}} </div> </header> {template="navBar" app="core" group="global" params=""} </div> </div> В CSS добавить, например в custom.css:#elSiteTitle { margin-left: 15px; } 1 Share this post Link to post
Атаман 460 06/03/2019 01:09 PM Спасибо. Но, навигация сужена, лого нормально Share this post Link to post
Lesovsky 162 06/03/2019 01:25 PM Видимо какие-либо ещё есть модификации, нужно смотреть. Вот стандартный шаблон, те правки что присылал + с изменением цвета навигации и добавлением padding-left: Share this post Link to post
Атаман 460 06/03/2019 01:38 PM У Вас на скрине аналогично уехала навигация в правую сторону... :( Share this post Link to post
Lesovsky 162 06/03/2019 01:39 PM У Вас на скрине аналогично уехала навигация в правую сторону... :( Я написал выше, что padding-left специально добавил для тега . 1 Share this post Link to post
Атаман 460 06/03/2019 01:47 PM Из-за того, что я указал резиновую ширину 95% в настройках Share this post Link to post
newbie 1,722 06/04/2019 06:41 AM В custom.css добавить [data-pagelocation="front"] #ipsLayout_header { {{if theme.enable_fluid_width}} {{if theme.fluid_width_size}} max-width: calc({theme="fluid_width_size"}% - 30px); {{else}} max-width: calc(100% - 30px); {{endif}} {{else}} max-width: calc(1340px - 30px); {{endif}} margin: 0 auto; } [data-pagelocation="front"] header .ipsLayout_container, [data-pagelocation="front"] .ipsNavBar_primary.ipsLayout_container { max-width: 100%; } Без правок html 1 Share this post Link to post
newbie 1,722 06/04/2019 07:51 AM Убрать - 30pxcalc тоже не нужен будет. 1 Share this post Link to post