Reputation: 13
How do I specifically assign a style to a child (the top black header from the image)
I've tried something like
.noo-topbar > .container > a
and
.noo-topbar .container a
but nothing's changed...
Upvotes: 1
Views: 49
Reputation: 194
Read about css combinators:
http://www.w3schools.com/css/css_combinators.asp
if you still have trouble i'd suggest applying an id to it, like #specialElement, and styling it directly.
Upvotes: 0