On Wed, 27 Jan 2016 14:15:10 -0800
"J.C. Berry" <jcharlesbe...@gmail.com> wrote:
> I have read that on mobile devices it is better to move your nav to
> the bottom of the screen. First of all, do you agree? Secondly, how
> can you move something down that may be in the HTML above the other
> elements?

I can't answer your first question - I'm a "make it go" guy, not a
designer.  As for how, I always put the <NAV> section near the top of
my HTML right after the header but on some pages I display it at the
bottom.  In those cases I also fix it in place so that it is always
available without scrolling down.  Here's an example.

NAV {
  position: fixed;
  bottom: 20px;
  width: inherit;
  background-color: #dddddd;
  color: #282010;
  font-size: 10pt;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 40px; 
} 

-- 
D'Arcy J.M. Cain
Vybe Networks Inc.
http://www.VybeNetworks.com/
IM:da...@vex.net VoIP: sip:da...@vybenetworks.com
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to