as far as i can see, the dropdown background is styled by this:
#pagemenu li li a,
#catmenu li li a {
width: 168px;
float: none;
margin: 0px;
padding: 5px 10px;
border: 1px solid #FFF;
border-top: none;
background: #1078b7 url(images/menu-bg.gif) repeat-x;
}
you might need to edit or remove the background image.
Hi there,
Thank you for responding! I have checked and I currently have this:
#pagemenu li li a background: #dbb826;
#catmenu li li a {
width: 168px;
float: none;
margin: 0px;
padding: 5px 10px;
border: 1px solid #FFF;
border-top: none;
background: #2422a1 url(images/menu-bg.gif) repeat-x;
}
I tried taking out the url(images/menu-bg.gif) but it didn’t make any difference…
If I take out the background: #dbb826; next to the #pagemenu li li a background: #dbb826; I end up getting the light blue dropdown with a dark blue line at the bottom of the larger boxes in the list…
what you have there, is breaking the syntax of the styles;
invalid syntax:
#pagemenu li li a background: #dbb826;
#catmenu li li a {
it is therefore not applied by the browser;
try and change it to:
#pagemenu li li a,
#catmenu li li a {
width: 168px;
float: none;
margin: 0px;
padding: 5px 10px;
border: 1px solid #FFF;
border-top: none;
background: #dbb826 url(images/menu-bg.gif) repeat-x;
}
(i can only gues that this is what you were trying to do ?)
When I do that I get a gold line towards the bottom of the light blue on the dropdown list…
When I leave it like …
#pagemenu li li a background: #dbb826;
#catmenu li li a {
…it all stays light blue in the box rather than being bi-coloured
I don’t understand how or where the light blue is coming from, because nowhere in the theme have I put the hex code for that colour….
i suppose you have left the background image in the style – and the background image is blue:
http://castlesintheair.eu/wp-content/themes/FlexxBlue_childtheme/images/menu-bg.gif
try without background image, just background: #dbb826;
I’m sorry but I’m not sure where to find that… I can’t find anything that seems to refer to background image…
I am sure you have found the problem with that… I just don’t know where to go to fix it!
OMG, its WORKED!!! I am dancing a jig here… I changed the headings so they are shorter so I could take out the syntax fault, and I changed the colour code as you suggested and it has worked!!!
Thank you sooooooo much!
I REALLY appreciate it!