Any suggestions?
Screenshot:

tia,
Rembrandt

Actually, the preview is a small "Gotcha" issue.carl_galloway wrote: Perhaps one of the developers could explain, does a frontend theme make any changes to the admin theme. I was under the impression that the admin styles were completely separate, and that even basic html tags were styled in the admin stylesheet. Is there ever a time when the admin page would be changed by themes we develop for our blogs?
Code: Select all
<head>
<title>Serendipity Administration Suite</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="/cvs/serendipity/trunk/serendipity.css.php" />
<script type="text/javascript">
window.onload = function() {
parent.document.getElementById('serendipity_iframe').style.height = document.getElementById('mainpane').offsetHeight
+ parseInt(document.getElementById('mainpane').style.marginTop)
+ parseInt(document.getElementById('mainpane').style.marginBottom)
+ 'px';
parent.document.getElementById('serendipity_iframe').scrolling = 'no';
parent.document.getElementById('serendipity_iframe').style.border = 0;
}
</script>
</head>
<body style="padding: 0px; margin: 0px;">
<div id="mainpane" style="padding: 0px; margin: 5px auto 5px auto; width: 98%;">
<div id="content" style="padding: 5px; margin: 0px;">
<div style="float: left; height: 225px"></div>
<!-- ENTRIES START : entries.tpl is parsed here-->
<!-- ENTRIES END --><br style="clear: both" /> </div>
</div>
</body>