Miller
-
How to add custom style to scrolls
http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
-
full witdh image background with text on it
http://css-tricks.com/perfect-full-page-background-image/
-
IE Nav bar issue (Wordpress)
replace meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" with meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"
-
disable scrollbar in body
body {overflow:hidden;} another_element {overflow:scroll;}
-
navigation bar styling problem
What will that achieve? Isn't 1em the default? default is something like 1.4em line-height:1em will reduce line height to font size so height of the element and its border will be the same with font size, but yes it will reduce 'cli…
-
navigation bar styling problem
How can I shorten the height the border? a { line-height:1em; }
-
Navigation sub menu issue in IE8
I think you should recreate nav from zero. I usually use something like .nav>li {height: xx ; overflow:hidden;} .nav>li:hover { overflow:visible; } as I remember that worked fine with IE