Jump to content

How do i fix navigation?


SabinSanchez

Recommended Posts

They are using frames on that site, but frames went out in the '90s!

 

You can do it using:

 

position:fixed

 

on the left navigation. This will fix the element in place, while the rest of the page scrolls.

 

I don't get how to do that create a layer with a fixed position while having another layer

I'm a web-designer not great at html just do the design really, Could you help me?

HTML:

<div id="navigation">
some navigation stuff
</div>

<div id="content">
some content
</div>

 

CSS:

#navgation
{
  position:fixed;
  width:25%; // set the width of the navigation here
}

#content
{
  margin-left:26%; // this should be equal to or bigger than the width of the navigation. 
}

 

  • 4 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.