what do you mean for "with inline css it's possible"
This code has to be included inside the html-page index.html, below:
</script> and before the </body>
Inline css means that the css code is combined with html, I use for other pages a separate stylesheet called external css:
<link rel="stylesheet" type="text/css" href="style.css" />
in the <head> of my home index.html (your first page on the server always has to be called index.html)
style.css looks like this for my menu:
#menu {
width: 150px;
float: left;
margin: 0px 10px 0px 0px;
}
That's css code, it means that my image for the home-button must be on top of other images (background image in my case)
or -70px if i put a different number?
top: -70px; means that my button must be placed 70px from the top...the same for left: 50px: 50px from the left to be visible on the page, you'll have to experiment with it to get the link/button visible
You can put as many rows (enters) as you like in html, it won't show...