Hey there alliburnie.
Your code is most likely being overridden by another code most likely because it has more specificity in the selector. You can find more info about specificity and its use here: http://www.smashingmagazine.com/2007/07/css-specificity-things-you-should-know/
If you want you can post link to your site and I’ll be happy to help you with removing that 🙂
Cheers,
Bojan
the website is luckydrifters.com
Thanks.
Hello alliburnie,
In order to hide the navigation bar, you were on the right track. Use the following code-
#site-navigation {
display: none !important;
}
It should work everywhere.