Thread: LRF output
View Single Post
Old 03-06-2008, 12:05 PM   #639
beowulf573
Addict
beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.beowulf573 once ate a cherry pie in a record 7 seconds.
 
beowulf573's Avatar
 
Posts: 208
Karma: 1523
Join Date: Jul 2007
Location: Houston,TX
Device: PRS-T1
I was able to narrow down the lockup to one css tag, I created a ticket with a sample file but for everyone else here's an example.

This attribute, "margin-left: 25.5em;", seems to be the culprit.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Sample</title>
<style type="text/css">
 body
 {
     margin-left: 0em;
     margin-right: 0em;
 }
 .attribution1
 {
     font-family: "Times New Roman",serif;
     margin-top: 0.5em;
     margin-bottom: 1.1em;
     margin-left: 25.5em;
 }
 </style>
</head>
<body>

<p class="attribution1">
sample text that doesn't seem to work
</p>
</body>
</html>
beowulf573 is offline   Reply With Quote