Many thanks to everyone who posted here.
As a result of reading all these comments I’ve worked out how to customise the colour of any element and I’m very happy.
The way I’ve changed the colour of that pesky “black bar” doesn’t involve using a graphics package to create or modify the background image used. Instead, I modified the CSS so it’s purely a background colour rather than an image as background. Here are the steps below in case it’s useful to someone else.
- Use Firefox ??
- Install the Firebup plug-in from https://getfirebug.com/wiki/index.php/Main_Page
- Right-click on whichever element you want to change and select “Inspect Element”.
- Check what is highlighted in the left pane of the Firebug display.
eg. Right-clicking on the black bar where the menu is and inpecting it gives the following highlighted in black
<ul id="header-menu" class="menu clearfix default-menu">
This means I need to edit the colour of the header-menu.
- Look in the right pane of the Firebug display. Scroll down until you find the same element.
eg.
#header-menu {
background: url("images/sprite_h.png") repeat-x scroll left -3px #101010;
}
- Now click to highlight the background options “url etc”.
Delete url("images/sprite_h.png")
. This gets rid of the background image and uses a background colour of #101010
instead.
- Change the background colour to something else and see how it looks.
Hovering over the HTML colour pops up a preview window of the colour also. Changes are reflected in this page view, but aren’t ACTUALLY changed on your site yet.
- Once you’re happy with the colour, copy the HTML that you’ve been editing in the right hand pane.
If you’ve been editing an element with lots of options you only need the beginning, end and the line(s) you’ve changed (the others won’t be affected).
- Minimise the Firebug display so it doesn’t annoy you.
- In the Admin pages for your site go to Appearance -> Graphene Options -> Display (ie. where you changed all of the easily accessible colours) and scroll to the bottom where it says “Custom CSS”.
- Paste your copied HTML here.
eg.
#header-menu {
background: none -3px #844B5D;
}
(You probably don’t need the `-3px’ but I’ve been too lazy to work out what it does.)
All other options for this element will stay the same.
In the right pane of the Firebug display you’ll now see your new options with the original options somewhere further down with a line through them.
ie.
#header-menu {
background: none repeat scroll -3px 50% #844B5D;
}
and below it with a text strikethrough:
#header-menu {
background: url("images/sprite_h.png") repeat-x scroll left -3px #101010;
}
Notice that a couple of options have been automatically added.
All elements including text colours can be changed in the same way without having to edit the CSS in a different editor. It also makes it easy to keep track of any changes you made because they’re listed separately from the rest of the CSS. It’s also really easy to undo them ??
I’m not an expert, this is my first WP site and first use of Firebug but it seems to work nicely.
Another quick example:
The top-bar and coloured edge underneath can be changed to white with a red line underneath by adding the following to the Custom CSS window:
#top-bar {
background: none -196px #FFFFFF;
border-bottom: 1px solid #FF0000;
}
I hope this helps others.