Merhaba arkadaşlar. html ve css'de bir açılır menü oluşturdum fakat bunu wordpresse entegre ederken sıkıntı yaşadım. yardımcı olursanız sevinirim.

Menü HTML kodları;



Menü CSS Kodları;

.header-menu{
width:817px;
height:52px;
float:left;
position:relative;
font-size:15px;
}

.header-menu a{
width:auto;
height:52px;
float:left;
font-size:15px;
color:black;
padding-left:18px;
padding-right:18px;
border-right:solid 1px white;
line-height:52px;
}

.header-menu a:hover{
background-image:url(img/menuhover.png);
background-repeat:repeat-x;
margin-top:2px;
}

.header-menu li{
width:auto;
height:52px;
float:left;
position:relative;
}

.header-menu ul li ul{
width:180px;
height:auto;
float:left;
position:absolute;
background:#E4E4E4;
top:52px;
left:1px;
z-index:1;
display:none;
}

.header-menu ul li ul a{
width:163px;
height:30px;
line-height:30px;
float:left;
padding:0 0 0 17px;
border-top: dashed 1px gray;
background:none;
}

.header-menu ul li ul a:hover{
width:163px;
height:30px;
line-height:30px;
float:left;
padding:0 0 0 17px;
border-top: dashed 1px gray;
background:none;
}

.header-menu ul li ul li {
height:30px;
line-height:30px;
}

.header-menu li:hover > ul{
display: block;
}