Hi there, I through trial and error have got the template for sandbox how we want it with one exception. We removed the bullets on the list items, in ie they are fine but in firefox I cant remove the indent. I want the list header and item to align flush. I assumed it was to do with list-style:0; but Ive added this to all the sections below with no results.
can anyone advise? web address and possable css code below:
http://davidhenckel.com/wordpress/
div#menu {
background:#EEE;
height:1.5em;
margin:1em 0;
width:100%;
}
div#menu ul,div#menu ul ul {
line-height:1;
list-style:none;
margin:0;
padding:0;
}
div#menu ul a {
display:block;
margin-right:1em;
padding:0.2em 0.5em;
text-decoration:none;
}
div#menu ul ul ul a {
font-style:italic;
}
div#menu ul li ul {
left:-999em;
position:absolute;
}
div#menu ul li:hover ul {
left:auto;
and then this code which I expect I need to add something to..............................
div.sidebar li {
list-style:none;
font: 10pt/150% helvetica, arial, sans-serif;
margin:0 0 2em;/* em squashes the gap between title and list */
}
div.sidebar li form {
margin:0em 0 0;/* making the em 0 seemed to add space between list items */
padding:0;
}
div.sidebar ul ul {
margin:0;
}
div.sidebar ul ul li {
list-style:0;
margin:0;
}
div.sidebar ul ul ul {
margin:0 0 0 0.5em;
}
div.sidebar ul ul ul li {
list-style:circle;
}
div#menu ul li,div.gallery dl,div.navigation div.nav-previous {
float:left;