-
Posts
416 -
Joined
-
Last visited
-
Days Won
10
Community Answers
-
satantx's post in Проблема с z-index was marked as the answer
.menu_background {
position: fixed;
height: 30px;
width: 100%;
background: #3a7c8c;
opacity: 0.85;
z-index: 10;
}
-
satantx's post in При создании textarea для написания кода, нужна табуляция строк, а не переход по индексу was marked as the answer
http://wp-kama.ru/id_3755/simvol-tabulyatsii-t-v-textarea-pri-nazhatii-tab-na-klaviature.html
-
satantx's post in Сабменю двигает контент (пробовал absolute, но исчезает меню) was marked as the answer
#menu li { text-transform: uppercase; box-shadow: 1px 0 0 #ed6a24; display: block; float: left; list-style: outside none none; /* overflow: hidden; */ position: relative; width: 25%; text-align: center; } ul.nav li ul { display: none; position: absolute; left: 0; top: 100%; } Заменить
-
satantx's post in Центрирование блоков в контейнере was marked as the answer
https://jsfiddle.net/v64sxn2b/2/
.posts { clear: both; width: 1200px; min-height: 380px; overflow: hidden; padding-bottom: 20px; position: relative; text-align: center;}.posts .block3 { border: 2px solid #fff; display: inline-block; vertical-align: top; margin-right: -4px; height: 100%; max-height: 360px; padding: 18px 18px 70px; position: relative; width: 328px;} -
satantx's post in Checkbox,radiobox изменение по клику на label was marked as the answer
Уберите # перед <label for="chkbox">
-
satantx's post in Выравнивание в ячейках (ie9) was marked as the answer
.payments__item {
float: none;
display: table-cell;
background-size: 100%;
border-right: 10px solid transparent;
background-position: 0 50%;
}
-
satantx's post in Прозрачность картинки и z-index was marked as the answer
#header { position: fixed; top: 0; left: 0; width: 275px; height: 100%; color: #fff; background: #222629 url("../images/overlay.png"); box-shadow: inset -0.25em 0 0.25em 0 rgba(0, 0, 0, 0.1); text-align: right; z-index: 2;}Замените, нужно добавить блоку z-index: 2;
-
satantx's post in Отформитировать текст в ячейке was marked as the answer
#content tr td {
border-top: 1px solid #e7e7e7;
padding: 6px 24px;
vertical-align: top;
}
-
satantx's post in установить автоширину меню was marked as the answer
#mainmenu > ul > li { overflow: visible; display: block; float: left; white-space: nowrap;}white-space: nowrap; добавьте
-
satantx's post in Дивы друг под другом was marked as the answer
используйте вместо float: left
.div {
display: inline-block;
vertical-align: top
}
-
satantx's post in Выпадающее меню остаётся в границах своего родителя was marked as the answer
Замените
#top_menu { margin-top: 20px; background: url(../images/normal.png) top center repeat-x; width: 978px; text-align: center; /* overflow: hidden; */ text-shadow: 0 1px 0 #fff; border: 1px solid #dbdbdb; border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0; height: 46px; position: relative; z-index: 10;} -
satantx's post in блок с css стилями. was marked as the answer
https://jsfiddle.net/64pggfcp/
background-image: url(../img/как_нарисовать_сову.jpg); -
satantx's post in Нужна помощь в поиске ошибки was marked as the answer
на input after не будет действовать, оберните в div и на него применяйте after
-
satantx's post in Как правильно применить стиль к li class X ul class Y? was marked as the answer
Почему у вас тэги не закрыты?
И надо классы через точку писать в css .item-3 .deeper .parent .mega-menu { }
-
satantx's post in Помогите с шапкой сайта в мобильных браузерах was marked as the answer
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
color: #333;
background-color: #fff;
min-width: 940px;
}
-
satantx's post in Изменение слова при достижении последнего слайда was marked as the answer
$('.rslides_tabs li:last').click(function(){ $('.pop-del-slider-next').hide();});В вашем случае hide заменить на show
-
satantx's post in Баг мобильных браузеров was marked as the answer
.mainWrapper {
width: /*980*/ 1000px;
margin: auto;
position: relative;
margin-top: -94px;
overflow: hidden;
}
body {
min-width: 1000px;
margin: 0;
padding: 0;
background: #f0efeb;
}
-
satantx's post in Не отображаются яндекс карты was marked as the answer
html, body {height: 100%;}Добавьте
-
satantx's post in Как растянуть контейнер по высоте для фонового изображения was marked as the answer
http://jsfiddle.net/zp41stpk/1/
-
satantx's post in закрывающая кавычка переносится was marked as the answer
.quotes:after{ content: '»';}Убери display: inline-block;
-
satantx's post in Не могу сделать выпадающее горизонтальное меню was marked as the answer
http://jsfiddle.net/a92cnya0/