Alright, I fixed it using ul divs. Never worked with those before, so it was kind of hard to figure out.
Now I’m facing another problem: the alignment of the links. I tried to align the links to the left but they won’t go fully to the left.
Here’s a little example:
https://i56.tinypic.com/nqe4oj.png
And this is the CSS I’m using
ul#nav {
height:25px;
}
ul#nav li {
list-style:none;
float:left;
line-height:25px;
padding:0 10px;
background-image: url(images/button.png);
}
Whereas “ul#nav” is the container and “ul#nav li” is the style of the actual buttons
I hope you guys can help me out. Thanks ??