LordJezo, congrats on fixing it. =) It seems to be that any theme made by Sadish and patriciamuller does that for some reason. I myself even used or implimented their “original” coding within my Andreas08 layout.. And had problems at first..but then got around it all.
Those same lines:
/************** Post Wrap Stuff ********************/
.post-title {
background:url(img/headertop.gif) top left repeat-x;
width:496px;
height:35px;
margin: 0 0 0.3em;
text-align: right;
padding: 0.5em 1em 0 1em;
color: #f0f0f0;
}
.post-title-footer {
background:url(img/footerbottom.gif) top left repeat-x;
width:507px;
height:25px;
margin:0.3em 0 0;
padding:1em 0 0 1em;
font-family:Tahoma;
font-style:normal;
text-decoration: none;
}
.post-title em {
font-family:Tahoma;
color:#f0f0f0;
line-height:1.0em;
font-size:1em;
font-style:normal;
float: left;
text-decoration: none;
margin: 0 0 0.2em;
padding: 0.4em 1em 0 0;
}
.post-content {
margin:0 0 0 0.2em;
padding:0 5px 0 5px;
color: #f0f0f0;
font-size:1.0em;
}
.post-content a {
text-decoration: none;
color: #f0f0f0;
border: none;
}
.date{
margin: 0 0 0.3em;
padding:1em 0 0 1em;
font-family:Tahoma;
font-style:normal;
text-decoration: none;
text-align:right;
}
Had to be used just right within the actual codes or it wouldn’t display properly. I found that out when using and tried using the ShadedGrey setup for the actual posts…for my Andreas08 theme.
This call tag to the post.php file, was being drawed up within…and had to be worked around so it displayed right.. and within that file…. was the info-post tags, like below this code.
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry"><!--start entry post-->
<?php require('post.php'); ?>
</div><!--end entry-->
<—-From the post.php file ——>
<div class="post-content">
<?php the_content(); ?>
<p class="post-info-co">
<?php wp_link_pages(); ?>
<!--
<?php trackback_rdf(); ?>
-->
</div>
I basically had to get tons of help and messed with it to get it where I wanted it..so the output is this now. =) The second part of coding was in the POST.PHP file, which is called within the firt section of codes..
https://www.vindictivebastard.net/blog3/
In which, once I get this all complete..credits will be going to Sadish and PatriciaMuller as well as the others that helped me extensively…. =)
spencerp