Forum Moderators: not2easy
<div id="sidebar-a-recentlyViewed">
<ol>
<li>Item</li>
<li>Item</li>
</ol>
</div>
CSS:
#sidebar-a-recentlyViewed li {
font-family:Georgia, "Times New Roman", Times, serif;
font-size:70%;
font-weight:normal;
margin:0px;
padding:0px;
line-height:15px;
}
For some reason the number is a much larger size than the text.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Untitled</title>
<style type="text/css" title="text/css">
/* <![CDATA[ */
li {font-size: 230%;}
/* ]]> */
</style>
</head>
<body>
<ol>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ol></body>
</html>