I think I’m explaining myself poorly - stands to reason, this is not my realm of expertise for sure 😊 Thanks for the help in advance.
If you go to the main page here, the paragraph breaks look fine. This is how the xhtml renders them. But in the new test layout - no breaks between paragraphs at all, but seems to work if I change an entry to
instead of xhtml.
The code for the template is as follows:
{assign_variable:my_weblog="default_site"}
{assign_variable:my_template_group="journal"}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>inthelifeof</title>
<style>
* { padding: 0; margin: 0; }
body{ background-color: #FFF;
font-family: Trebuchet MS, Book Antiqua, Verdana, Serif;
font-size: 11px;
color: #000000;}
#wrapper {
margin: 0 auto;
width: 972px;
}
#leftcolumn {
color: #333;
border: 1px solid #ccc;
background: #E7DBD5;
margin: 10px 5px 5px 0px;
padding-bottom: 10px;
padding-top: 5px;
padding-left: 5px;
padding-right: 5px;
height: auto;
width: 195px;
float: left;
}
#content {
float: left;
color: #333;
border: 1px solid #ccc;
background: #F2F2E6;
margin: 10px 5px 5px 0px;
padding: 10px;
height: auto;
width: 506px;
line-height: 20px;
}
#rightcolumn {
color: #333;
border: 1px solid #ccc;
background: #E7DBD5;
margin: 10px 0px 5px 0px;
padding: 10px;
height: 500px;
width: 195px;
float: left;
position: relative;
}
a:link {text-decoration : none; color : #000000; text-transform: uppercase;font-weight: bold;}
a:visited {text-decoration : none; color : #888; text-transform: uppercase;}
a:active {text-decoration : none; color : #000; text-transform: uppercase;font-weight: bold;}
a:hover {text-decoration : none; color : #D83152; text-transform: uppercase;}
.posted {
margin-top: 15px;
margin-bottom: 30px;
font-family: Trebuchet MS, Book Antiqua, Verdana, Serif;
font-size: 10px;
color: #000000;
text-align: right;
}
.title{
font-family: georgia, trebuchet ms, tahoma, serif;
font-size: 11px;
color: #000;
margin-bottom: 10px;
}
</style>
</head>
<body>
<!-- Begin Wrapper -->
<div id="wrapper">
<div id="leftcolumn">
blah blah blah left
</div>
<div id="content">
{exp:weblog:entries weblog="{my_weblog}" orderby="date" sort="desc" limit="3" paginate="bottom"}
<div class="title">{entry_date format=' %l, %F %d, %Y '} | <em>{title}</em></div>
{summary}
{body}
{extended}
<div class="posted">
Posted at {entry_date format='%h:%i %A'} in {categories}
<a href="http://{path=journal/index}">{category_name}</a> |
{/categories}
{if allow_comments}
<a href="http://{entry_id_path=journal/comments}">_{comment_total} Comments</a> |
{/if}
<a href="http://{entry_id_path=journal/comments}">Permalink</a></div>
{paginate}
<div class="paginate">
<span class="pagecount">Page {current_page} of {total_pages} pages</span> {pagination_links}
</div>
{/paginate}
{/exp:weblog:entries}
</div>
<div id="rightcolumn">
blah blah blah right column
</div>
</div>
</body>
</html>
Hope I did a little better in the explainage department this time 😉