I am trying to play with line heights on the following page:css
<http://arts.cregy.net/pages/pager.php>
I would like the word "Restormel" to sit on top of the word "Arts" and I can't seem to achieve this.
/*delete
#header .content{padding-bottom:0;}
*/
html, body { background-image: url(images/subliminal_spectrum.jpg); font: 100 100.01%/126% serif; margin: 0; padding: 0; text-align: center; }
h1 { color: #000; font-size: 0.95em; margin: 2em 0 0 20px; text-transform: uppercase; }
h2 { color: #000; font-size: 5em; margin: .1em 0 0 20px; text-transform: lowercase; }
html
<div id="pagewidth">
<div id="header">
<h1>Restormel</h1>
<h2>Arts</h2>
</div>
<div class="content">
<div id="navcontainer">
note:
Use relative font- sizing rather than pixels so IE can zoom -- this gets you started with % on the body and em's on selectors(1em=16px).
The number of comments does not match the number closed elsewhere on your style sheet.
Also use and style p {......} rather than using a class with breaks on your text.
Thanks Rich
Regards, David Laakso-- http://www.dlaakso.com/
______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
