View Single Post
Old 03-28-2020, 08:55 AM   #5
LittleMissS
Enthusiast
LittleMissS began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Apr 2019
Device: none
Quote:
Originally Posted by JSWolf View Post
It could be that you have your code looking like...

<p>p>*</p>
<p>p>*</p>
<p>p>*</p>

That would give you the look you are seeing instead of...

* * *

The code you want instead of three lines is...

<p class="center">* * *</p>

in CSS...

.center {
margin-top: 0.8em;
margin-bottom: 0.8em;
text-align: center;
text-indent: 0;
}

In Sigil in code view I have just used Find (in Rengex mode) to look for incidents of <p>p>*</o></p But, it says No Matches found.

So I then looked for >p and see the following, a number to times
<p>p> *</o></p>

I assume the >p between <p> and *</o></p> is surplus to requirements and the issue Is that likely / definitely so?

I am not sure why I can see an emoji inserted within the code above when I preview my reply to your reply! Would that be in the code in Sigil / epub - or only in here, maybe because I used the bold?
LittleMissS is offline   Reply With Quote