marmelade
Member
Posted 3 years ago #
I've been searching around here to find out why my multiple line breaks and paragraphs are gone from my website, and after a while I realised that it's my theme that's killing them. What I can't understand is why, so if someone could please, please help me I would be VERY grateful.
It's Hanna med H (in Norwegian) and CSS is here.
marmelade
Member
Posted 3 years ago #
Try changing this (line 14 in style.css):
* {
margin:0;
padding:0;
}
to this:
* {
padding:0;
}
marmelade
Member
Posted 3 years ago #
Oh, thanks! It made it better at least...
marmelade
Member
Posted 3 years ago #
But it still isn't normal: It still doesn't matter how many < br >s I make, the lines won't move...
Hi this just worked for me:
After the paragraph tags, where you want to but break lines, you can put this:
<div><br class="webkit-block-placeholder" /></div><div>
My problem looks like yours, and I just got it to give me breaks on the most recent post.
So
<p> Text in proper para tags
</p>
The code from above
<p>And then the next paragraph.
</p>
See if it works!