I don’t know anything about the woo theme aperture, but typically you could solve this sort of problem by setting appropriate z-index levels in your CSS file
Z index! Yes, I remember now.
I don’t actually have the coding skills to know exactly what to write and where, but I’m pretty sure that’s the solution, thank you.
If you have time to take a look and tell me what snippet of code to put where, much thanks. Until then I will continue the search, trial, and error.
Use something like firebug in firefox or developer tools in safari to find the CSS selectors for your menu, logo and navbar elements.
Then dig out your CSS primer for details on how to set z-index levels on the appropriate selectors. You’ll need to set them in your css file – unfortunately, that will vary from theme to theme. If you can’t find it anywhere obvious, drop a support query to Woo themes.
Add this to your CSS
#wp-admin-bar {
z-index: 1000;
}
Hey there thelandman. Looks like that’s in the right direction. I put it in though and no difference.
Maybe there is a way to lower the z-index of the logo and category bar instead?
I’ll see what WooThemes has to say.
Hm, so this is what WooThemes told me
This would be the element you are working with:
#logo {}
Add it to custom.css and start playing…
http://tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp
http://www.w3schools.com/Css/pr_pos_z-index.asp
Since Buddypress is a third party plugin, it isn’t supported in the forum.
So I set off trying out all sorts of wacky combos, example below…
#wp-admin-bar {
z-index: 2;
}
#logo {
position:fixed;
z-index: 1;
}
Alas, I’m just not a “coder” yet and none of my combos are pulling through.
@SidianMSJones, do you have a link I could take a look at for you?
Anyone else able to chime in?
@sidianmsjones
The problem is the nav ul which, regardless of what it looks like on screen, is actually sitting at the top of the header. The z-index is set to 9999 so it interferes with everything else.
In your /themes/aperture-NEW/style.css file, go to line 244 and set z-index of #nav to 0.
Your adminbar subnavs will display properly.
@sidianmsjones
Another suggestion, if I may…
IMHO, your main nav would look better if all menu items were on the same line (rather than seeing “About MyMythos” bumped to a 2nd line).
In /themes/aperture-NEW/style.css, go to line 252 and edit the padding like so:
padding:0 8px;
@pcwriter – THAT’S IT! (regarding the z-index).
I’m very excited.
However I’m not seeing this issue about the “About” page being bumped down to a second line.
I will say this though, that nav bar (category bar I guess) definitely needs some cleaning up, which I’ll be taking care of quite soon.
Thank you so much for your help!!
@sidianmsjones
Just checked your site again and it seems setting the z-index of ul#nav to 0 messes up the subnavs in your main navbar.
Setting it to 1 solves that.
Sorry… my bad
@pcwriter
No prob pcwriter. Checking that out now.