Нужно чтоб одна подкатегория меню не скрывалась.
То есть у меня создана стандартное выпадающее меню, мне необходимо, чтоб один пункт меню работал по другому.
Основной код отвечающий за скрытие
CSS |
1
2
3
| .moduletable_up li:hover ul ul, .moduletable_up li:hover ul ul ul, .moduletable_up li.sfhover ul ul, .moduletable_up li.sfhover ul ul ul {
left: -999em;
} |
|
Примерное место (вроде бы оно) где надо запретить скрытие
CSS |
1
2
3
4
5
6
7
8
| .moduletable_up .item-145 .nav-child ul.nav-child
{ width:140px !important;
padding: 10px 50px 5px 5px !important;
margin:0 !important}
.moduletable_up .item-145 .nav-child ul.nav-child li {width:120px !important;
margin-left:0 !important;} |
|
Что необходимо прописать для запрета на скрытие, или какие другие варианты?
Весь код
CSS |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
| .separator {
font-family:12px Verdana,Arial;;
color: #fff;
outline: 0;
text-decoration: none;
display: block;
padding: 10px 10px;
font-weight: normal;
list-style: none;
text-align: center !important;
font-size: 16px;
line-height: 30px;
padding: 0 20px;
cursor: pointer;
float: left;
}
.separator:hover, .separator.active {
color: #cccc66;
background: #741d09;
border-radius: 3px;
outline: none;
text-decoration: none
}
.moduletable_up .item-145 .nav-child { width:650px !important;
float:left; padding:0px 30px 0 0;
margin: 40px 0 0 -300px}
.moduletable_up .item-145 .nav-child .nav-header {padding:0 15px 0 0;
display: inline !important;}
.moduletable_up .item-145 .nav-child ul.nav-child
{ width:140px !important;
padding: 10px 50px 5px 5px !important;
margin:0 !important}
.moduletable_up .item-145 .nav-child ul.nav-child li {width:120px !important;
margin-left:0 !important;}
/*-----------------меню-------------------*/
#right1 {
width: 820px;
display: block;
font-size: 100%;
margin: 0;
padding: 0;
outline: none;
display: inline;
font: 12px Verdana, Arial !important;
}
#right1 ul li {
float: right;
display: inline-block;
padding: 10px 10px 10px 10px;
list-style: none;
text-align: left !important;
margin: 5px 0 0 0;
}
#right1 a {
text-decoration: none;
}
.moduletable_up {
float: right;
margin: 0;
top: auto;
height: 54px;
z-index: 100;
position: relative;
}
.moduletable_up a {
color: #FFF;
font: 16px Verdana, Arial;
line-height: 30px;
padding: 0 20px;
cursor: pointer;
display: block;
float: left;
text-decoration: none;
}
.moduletable_up a:hover, .moduletable_up li.active a {
color: #3286CB;
background:# 0CF;
border-radius: 3px;
outline: none;
text-decoration: none;
}
.moduletable_up a:hover, .moduletable_up li.active a
{background:#fff !important; }
.moduletable_up li ul {
position: absolute;
font-family: 12px Verdana,Arial;
margin:0 auto;
padding:0;
width: 170px;
left: -999em; /* Скрытие подпунктов */
background-color: #fff;
border: solid 1px #999999;
border-radius: 2px;
display: inline;
}
/* Внутренне выравнивание*/
.moduletable_up li li a {
width: 280px;
background-color: #fff;
border: 0;
padding: 0 0 0 0;
color:#2F83C8;
}
/* Внутренне выравнивание 2*/
.moduletable_up li ul a {
width: 150px;
margin: -10px 0 0 10px !important;
padding-left: 7px;
}
/* Скрывает подпункты */
.moduletable_up li:hover ul ul, .moduletable_up li:hover ul ul ul, .moduletable_up li.sfhover ul ul, .moduletable_up li.sfhover ul ul ul {
left: -999em;
}
/* Показывает подпункты */
.moduletable_up li:hover ul, .moduletable_up li li:hover ul, .moduletable_up li li li:hover ul, .moduletable_up li.sfhover ul, .moduletable_up li li.sfhover ul, .moduletable_up li li li.sfhover ul {
left: auto;
}
/* Сдвиг подпунктов 2 урв */
li.parent ul {
margin-top:40px;
margin-left:-104px;
}
/* Третий уровень */
li.parent ul ul {
margin: -16px 0 0 10px;
}
ul.right1 li a {
color:#3286CB;
display:block;
padding: 12px 12px;}
li.parent_up ul li a {
display:block;
float:left;
}
li.parent_up a {
color:#3286CB;
display:block;
text-decoration:none;}
li.parent ul ul a:hover, li.parent ul ul a:active, li.parent ul a:hover, li.parent ul a:active{
background:#EDF2F6 !important} |
|