I want to remove all the borders on twenty eleven child theme and I cannot figure out how to remove a faint grey border around the navigation bar. I change the background color of the nav bar but the border still shows. Any ideas?
I want to remove all the borders on twenty eleven child theme and I cannot figure out how to remove a faint grey border around the navigation bar. I change the background color of the nav bar but the border still shows. Any ideas?
First, create a child theme for your modifications so you don't change the Twenty Eleven theme.
Then in the child theme's style.css, add the following:
#access {
box-shadow: none;
}thanks but still didn't do the trick?
Hmm, I'd have to see your site to tell you more. It worked on my copy. :)
I was looking for the same thing.
I tried pasting this into my child theme style.css and it worked.
#access {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}You must log in to post.