last2048 Posted May 24, 2012 Share Posted May 24, 2012 Использую стиль в нем есть особенность - меню логина и админ панель не закреплена наверху, а катается всякий раз как скролишь страницу вниз/верх. Как избавиться от этой напасти и закрепить данную панельку только наверху? Quote Link to comment Share on other sites More sharing options...
Respected Posted May 24, 2012 Share Posted May 24, 2012 В ipb_styles.css найти: #header_bar { background: #323232 url({style_images_url}/user_navigation.png ) repeat-x bottom; padding: 0 10px 0 10px; text-align: right; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; width:500px; margin: 0 0 0 470px; position:fixed; -webkit-box-shadow: rgba(0, 0, 0, 0.58) 0px 5px 25px; -moz-box-shadow: rgba(0, 0, 0, 0.58) 0px 5px 25px; box-shadow: rgba(0, 0, 0, 0.58) 0px 5px 25px; z-index:9999; } Заменить на: #header_bar { background: #323232 url({style_images_url}/user_navigation.png ) repeat-x bottom; padding: 0 10px 0 10px; text-align: right; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; width:500px; margin: 0 0 0 470px; position:relative; -webkit-box-shadow: rgba(0, 0, 0, 0.58) 0px 5px 25px; -moz-box-shadow: rgba(0, 0, 0, 0.58) 0px 5px 25px; box-shadow: rgba(0, 0, 0, 0.58) 0px 5px 25px; z-index:9999; } [/code] last2048 1 Quote Link to comment Share on other sites More sharing options...
last2048 Posted May 24, 2012 Author Share Posted May 24, 2012 (edited) И еще вопрос на засыпку. Иногда все до единого пункты меню навигации сворачиваются до кнопочки "Больше", в выпадающем меню которой находятся все остальные менюшки. Как избавиться от этой функции сворачивания? Сердечно благодарю за решение первой проблемы!=) Edited May 24, 2012 by last2048 Quote Link to comment Share on other sites More sharing options...
Respected Posted May 24, 2012 Share Posted May 24, 2012 Как избавиться от этой функции сворачивания? В globalTemplate найти и удалить: <li id='nav_other_apps' style='display: none'> <a href='#' class='ipbmenu' id='more_apps'>{$this->lang->words['more_apps']} <img src='{$this->settings['img_url']}/useropts_arrow.png' /></a> </li> [/CODE] last2048 1 Quote Link to comment Share on other sites More sharing options...
last2048 Posted May 24, 2012 Author Share Posted May 24, 2012 И Вновь выражаю свою благодарность Quote Link to comment Share on other sites More sharing options...
Caius Posted May 25, 2012 Share Posted May 25, 2012 У меня тоже не большой вопросик по данному стилю, а как его растянуть немного, где это искать? Quote Link to comment Share on other sites More sharing options...
Respected Posted May 25, 2012 Share Posted May 25, 2012 В ipb_styles.css найти: #content, .main_width { margin: 0 auto; /* Uncomment for fixed */ width: 970px; /* Fluid */ /* width: 87% !important;*/ /* min-width: 960px; */ } [/CODE] где width: 970px; и есть ширина форума! Caius 1 Quote Link to comment Share on other sites More sharing options...
_Dark_ Posted May 25, 2012 Share Posted May 25, 2012 И еще вопрос на засыпку. Иногда все до единого пункты меню навигации сворачиваются до кнопочки "Больше", в выпадающем меню которой находятся все остальные менюшки. Как избавиться от этой функции сворачивания? Сердечно благодарю за решение первой проблемы!=) Чтобы они не сворачивались нужно обновить страницу. А если вы это удалите, у вас потом будут проблемы со скином. Если приложения не помещаются в навигации, они переходят в выпадающее меню, а у вас его нет. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.