2014-07-20 4 views
1

내 하위 메뉴가 엉망입니다. 너희들이 나를 고칠 수 있니? 나는 CSS에서 많은 시간을하지만 작동하지 않습니다. 내 메뉴 링크입니다.하위 메뉴 모음을 수정해야합니다. 드롭 다운을 제대로 할 수 없습니다.

enter image description here

#megaMenu #megaST .no-megamenu .menu-row.sub-menu-0 { 
top: 44px; 
left: 0px !important; 
} 

#megaMenu #megaST .no-megamenu .menu-row.sub-menu-0 li { 
width: auto; 
float: none; 
position: relative; 
} 

#megaMenu #megaST .no-megamenu .menu-row.sub-menu-0 li.item-parent:after { 
content: '\e879'; 
position: absolute; 
top: 6px; 
right: 10px; 
font-family: "fontello"; 
} 
+0

[JSFiddle] (http://jsfiddle.net)도 좋을 것입니다. 그렇다면 HTML을 공유하십시오. –

답변

1

문제는 당신 col1의 div 작은 폭 (74px)가 할당되어있다 : 나는 CSS에 새로운 오전 때문에 CSS를 좋은 아니에요. CSS에 다음 클래스를 추가하십시오.

div.nav-dd.col1 
{ 
width:auto !important; 
} 
+0

감사합니다. 작동합니다. – Neko