I've tried a number of things, but can't seem to modify my CSS to add space between my menu elements.
My site is http://dnorthington.com
I'm using the following function to move it up to the top right:
// Move menu to top right
function new_header() {
remove_action('thematic_header','thematic_brandingopen',1);
remove_action('thematic_header','thematic_access',9);
}
add_action('init', 'new_header');
add_action('thematic_header','thematic_access',1);
add_action('thematic_header','thematic_brandingopen',2);
And the following CSS:
/*** Align Menu in Header Right ***/
.menu ul {float:right;}
I've tried adding margin to a number of the Menu classes and IDs. I really admire the support provided on this site. Thanks in advance for any help.