Ok, this bit of code doesn't seem to be doing anything apart from causing problem.
Code:
.tbl1 th span a:link
{
float:left;
font-size:14px;
color:blue;
font-family:Arial;
}
.tbl1 th a:link
{
float:left;
font-size:14px;
color:#000;
font-family:Arial;
}
Remove that and your link will display on one line, however it will also drop a line below your text on the left, if you want them both to appear on the same line then the easiest solution is to swap round these two lines of your code.
Code:
<a href="http://localhost/folder1/link1.html">Data Line 1</a>
<span>Batch : <a href="http://localhost/folder1/link8.html">2000</a></span>
To this,
Code:
<span>Batch : <a href="http://localhost/folder1/link8.html">2000</a></span>
<a href="http://localhost/folder1/link1.html">Data Line 1</a>
Or alternatively you could just apply a class to the left link and float that left which would have the same effect.
Hope that helps.
Bookmarks