I suppose something like this is close.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#header {
background: #FC3;
color: #006;
padding: 2em 0 0 0;
clear: both;
position:relative;
overflow:hidden;
zoom:1.0;
}
#header #issue {
background: #006;
color: #FC3;
width: 100%;
text-align: right;
position:absolute;
top:0;
left:0;
font-size: x-large;
margin:0;
}
#header h1 {
margin: 0;
font-size: 3.5em;
position: relative;
float: right;
padding:.7em 10px 0 0;
}
#header h1 span {
font-size: .5em;
white-space:nowrap;
position:absolute;
top:0;
left:0;
}
#header h2 {
text-decoration: underline;
margin: 0 0 0 10px;
}
#header ul {
padding: 0 0 0 30px;
margin: 10px 0 0 0;
width: 25%;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>Name Of Newsletter<span>Quarterly Newsletter</span></h1>
<p id="issue">Issue ### Month 2010</p>
<h2>In This Issue:</h2>
<ul>
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
</div>
</div>
</body>
</html>
It's a little awkward without changing the html so the above is bout as close as I can get.
Bookmarks