Thanks all. CletusSpuckler works like magic. ralph.m, I tried also yours, but sorry, didn't work at all. 
Anyway, I want some explanations. What does the "only" mean in media query (such as: ...only screen....). Again, what should I do to apply the same query for screen and handheld?
Again, gradients are not working in Android browser. I tried "-webkit-linear-gradient" and "-webkit-gradient" both, none of them worked. Look at my modified gradient codes for the navigation and the footer:
Code:
/* for footer */
background: -moz-linear-gradient(bottom, #6a6a6a 0%, #ddd 100%);
background: -webkit-gradient(linear, bottom, #6a6a6a 0%, #ddd 100%);
background: -webkit-linear-gradient(bottom, #6a6a6a 0%, #ddd 100%);
background: -o-linear-gradient(bottom, #6a6a6a 0%, #ddd 100%);
background: -ms-linear-gradient(bottom, #6a6a6a 0%, #ddd 100%);
/* for navigation */
background: -webkit-gradient(linear, left, #1e1e1e 0%, #000 175%);
background: -moz-linear-gradient(left, #1e1e1e 0%, #000 175%);
background: -webkit-linear-gradient(left, #1e1e1e 0%, #000 175%);
background: -o-linear-gradient(left, #1e1e1e 0%, #000 175%);
Bookmarks