Reputation: 12912
Here's my fiddle:
Code code code
Here's the effect I'm trying to correct (note the vertical duplication, which I think is a shadow):
How can I remove this shadow? It's happening in chrome and firefox for me - the fiddle shows a gray shadow instead of white. You may also have to drag the fiddle bar over to the left to show the "Intro" text - bootstrap's responsive menu seems to be kicking in if you don't.
Upvotes: 3
Views: 5671
Reputation: 12912
Adding the following fixed it:
#menu-bar p, #menu-bar a {
color: white;
-webkit-text-shadow: none;
text-shadow: none;
}
Upvotes: 2