top



Hi can anybody tell me how to do the navigations on the left side like here on this forum this is what i mean

How do u do this? 2lt3p01

That navbar if hard to explain for beginners, there is alot to do with it.. but i will make one with 1 or 2 icons (:

Thats ok i dnt need more than 2 or 3 anyways

Do you prefer the CSS version or jQuery?

it dont matter

Just create an fixed div placed on the left side.
Expriment with fixed positioning

Code:
<div id="sax-bar">
<a href="LINK"><img src="IMG" /></a><br />
<a href="LINK"><img src="IMG" /></a><br />
<a href="LINK"><img src="IMG" /></a>
Yay!
</div>

<style>
#sax-bar {
  position: fixed;
  left: 5px;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: 1000;
  }
</style>

and where do i place that again

that's just the positioning the top part is the place where your navbar should be and the second part is the css for that but you won't get any effect

? Stress
Just Change "IMG" with your icons links and paste this any where in ur template or announcements (:

is this solved?

Considered done.