I already tried changing the file
skin1\main.css to
float: left and all it did was reverse the order of the speedbar buttons. After a bit of trial and error I found a possible solution:
Code:
.tabs {
position: absolute;
top: 0px;
/* added the left value to equal the width of the left-hand categories bar minus 20px
right: 20px; and removed this line so that everything aligns to the left */
left: 230px;
margin: 0px;
padding: 0px;
height: 30px;
/* added the width value to equal the total width of the speedbar so that it degrades correctly */
width: 615px;
text-align: right;
}