Forum Moderators: not2easy
<html>
<head>
<style>
.pages li{float:left; width:30px; height:20px; list-style:none;}
</style>
</head>
<body>
<div class="pages">
<ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
</div>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>1, 2, 3, 4 and 5</title>
<style type="text/css">
#pages {
padding:0;
margin:0;
width:150px;
margin:auto;
}
#pages li{
float:left;
width:30px;
height:20px;
list-style-type:none;
}
</style>
</head>
<body>
<ul id="pages">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
</body>
</html>
No problem, you're very welcome. ;)