Dear Community,
I'm completely new to this wordpress thing.
I'm using Arjuna theme on http://iki-island.net/
I'm trying to double the height of the header menu so that Places To Stay etc is showing with the same dark background as the other items (Home etc). I found the dark background in the Images folder and it's called HeaderMenu1. I've tried changing all the heights in the below section of code, but I just screw various things up.
How do I do this? What I think is the relevant code is:
/* Content Wrapper */
.contentWrapper {
min-height:350px;
padding:20px;
}
.headerMenu1 {
z-index:2;
position:relative;
min-height:25px;
background:url(./images/headerMenu1.png) no-repeat 0 bottom;
}
.headerMenu1 ul {
float:right;
margin:0 20px;
}
.headerMenu1L ul {
float:left;
}
.headerMenu1 ul li {
float:left;
height:24px;
position:relative;
z-index:1;
}
.headerMenu1 li a,
.headerMenu1 li a:visited {
display:block;
height:24px;
line-height:24px;
color:#a6a6a6;
font-size:11px;
text-decoration:none;
padding:0 8px;
}
.headerMenu1 li a:hover {
color:#bfbfbf;
text-decoration:none;
}
.headerMenu1 ul ul {
position:absolute;
top:24px;
right:0;
display:none;
background-color:#dbdddd;
border:1px solid #000;
margin:0;
z-index:1;
}
.headerMenu1L ul ul {
right:auto;
left:0;
}
.headerMenu1 li li {
float:none;
width:180px;
height:auto;
}
.headerMenu1 li li a,
.headerMenu1 li li a:visited {
height:auto;
line-height:20px;
padding:0 8px;
width:164px;
position:relative;
color:#333;
}
.headerMenu1 li li a:hover {
background:#cacccc;
padding:0 8px;
color:#333;
}
.headerMenu1 li:hover ul,
.headerMenu1 li.jHover ul {
display:block;
}
.headerMenu1 ul ul ul,
.headerMenu1 li:hover ul ul,
.headerMenu1 li.jHover ul ul {
display:none;
top:3px;
right:175px;
}
.headerMenu1L ul ul ul,
.headerMenu1L li:hover ul ul,
.headerMenu1L li.jHover ul ul {
right:auto;
left:175px;
}
.headerMenu1 li li:hover ul,
.headerMenu1 li li.jHover ul {
display:block;
}