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?

Link to comment
Share on other sites

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. 
}

 

Link to comment
Share on other sites

  • 4 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.