I assume you are referring to that awful translucent monstrosity at the top. I don’t know how to do this, but I assuming it’s just a matter of commenting out a line of script somewhere. If you figure out how, let us know.
I think I removed all the widgets in the customize themes settings. None of that is on mine, though the sidebar is still there, unfortunately.
All I ever wanted was a theme with a pure graphic header on the main page screen at load (after two years of looking, I still haven’t found one!), but this theme is as close as I ever got. I’ve stripped out many uglinesses by leaving the fields blank.
To remove it, add display:none; to the .navbar-inverse class in the stylesheet (Appearance, editor, scroll down and click Stylesheet at the bottom right).
Look for the line that says:
.navbar-inverse {
background-color: #222;
Add another line so it looks like
.navbar-inverse {
background-color: #222;
display: none;
hi there,
is there a way to change the background colour to transparent instead of removing it altogether? I want the links still, but the opaque block is indeed a monstrosity…
I tried
.navbar-inverse {
background-color: transparent; }
didn’t work…
Hi peterpan.in
You can add this to your .navbar-inverse class:
background: transparent none repeat scroll 0% 0%;
This won’t remove the menu, but the transparent background.
cheers