How do I make my side bar fixed so when scrolling down on the page the sidebar will follow like my main menu ? I tried using a z-index to fixed the position but it doesn't work. Does any one know how to fixed that ?
This is my site
And its ther anyone to make the sidebar fixed on ONLY blogg page and "senaste nummret" page? dont want them to be fixed on all the other pages.
.sidebar-left {left: 0px; top: 20px; padding: 0px; position:fixed;}
You need to define where you want the sidebar to be fixed in relation to. Hence the left: 0px and top: 20px. If you want it fixed relative to the header, footer or rhs, just change the 'left' for the correct position.
Hope that helps.