SabinSanchez Posted March 24, 2010 Share Posted March 24, 2010 How do i make my navigation fixed like this sites: http://moogen.piiym-net.com/ and make my content box scroll like that? Quote Link to comment Share on other sites More sharing options...
haku Posted March 24, 2010 Share Posted March 24, 2010 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. Quote Link to comment Share on other sites More sharing options...
SabinSanchez Posted March 24, 2010 Author Share Posted March 24, 2010 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? Quote Link to comment Share on other sites More sharing options...
haku Posted March 25, 2010 Share Posted March 25, 2010 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. } Quote Link to comment Share on other sites More sharing options...
SabinSanchez Posted March 25, 2010 Author Share Posted March 25, 2010 Appreciate the fast replys! Quote Link to comment Share on other sites More sharing options...
patriklko Posted April 17, 2010 Share Posted April 17, 2010 the concept of frames are outdated now.....using <div> is the efficient and updated concept in designing webpage...... Quote Link to comment Share on other sites More sharing options...
TeddyKiller Posted April 17, 2010 Share Posted April 17, 2010 The website also states 'Site is best viewed in 1024x768 with Opera 9 and Firefox 2.0 ' That's.. quite a way out of date to current browsers Quote Link to comment Share on other sites More sharing options...
divinequran Posted April 21, 2010 Share Posted April 21, 2010 If your are beginner then you can simply use tables for better view. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.