View Single Post
04-17-2015, 08:53 PM
#2
Sw1tch is offline Sw1tch
Sw1tch's Avatar
Status: I'm new around here
Join date: Nov 2006
Location: Austin, TX
Expertise: Front end development
Software: Sublime Text 2, Photoshop
 
Posts: 3
iTrader: 0 / 0%
 

Sw1tch is on a distinguished road

  Old

I made a codepen and cleaned up your example, I think this is your desired output:

http://codepen.io/anon/pen/MwgbLp


Your styles weren't being applied because your selectors weren't matching. For example:

Code:
#nav .contactus li a
Should have been:

Code:
#nav li.contactus  a

Reply With Quote
Thanked by:
kaymeis (09-28-2015)