bartvdploeg1
Member
Posted 1 year ago #
All of my posts doesn't have the breaks between the sentences. Other themes that I downloaded are fine. When I put the 's manual it looks fine but I think that isn't the right way.. Does anyone know how to fix this issue?
My website http://www.bartvdploeg.nl/
Your theme may be using <?php the excerpt();?> instead of <?php the_content;?> in its template files. Simply edit the relevant template files and replace </php the excerpt();?> with <?php the_content;?>.
bartvdploeg1
Member
Posted 1 year ago #
I searched for it and could only find it at the archive page. But that resulted in nothing. Are there other options?
Perhaps your theme is using a custom function instead of the_content()? Drop a copy of one of the affected theme template files (index.php?) into the WordPress pastebin and post the pastebin url here. Perhaps someone will be able to spot the problem and suggest a solution.
bartvdploeg1
Member
Posted 1 year ago #
Got it! It's not your theme's templates that are at fault. It's the stylesheet. Edit style.css and change:
#side-left p {
margin:0;
padding:0;
}
to:
#side-left p {
margin:1em auto;
padding:0;
}
bartvdploeg1
Member
Posted 1 year ago #
Thanks man! That was the solution! Everything looks fine finally ;)