Monthly Archives: September 2013

Dropdown navs

Hey Class, So one problem we identified in the last class was getting our sub-menu to stay active when we hover over the links – some of you noticed that if we exit the hover-state of the button in our primary navigation, the sub-nav disappears.  Well, if we coded this correctly, it shouldn’t have that problem: .mainNav li:hover ul { … Continue Reading

Posted in Uncategorized | Comments Off on Dropdown navs

Favicons!

The code we’ll use to get a favicon onto our site will be: <link rel=”apple-touch-icon” href=”path/to/touchicon.png”> <link rel=”icon” href=”path/to/favicon.png”> <!–[if IE]><link rel=”shortcut icon” href=”path/to/favicon.ico”><![endif]–> Surprisingly complicated, eh? I’ll go over the why and how on Monday. We’ll make our favicons as PNGs, and also save an .ICO file. If you’re struggling with creating favicons, or just want some suggestions / … Continue Reading

Posted in Uncategorized | Comments Off on Favicons!