View Single Post
Old 08-17-2021, 10:18 AM   #5
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,823
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Try suppresing the <br/> tags and, to force a new line, use the property "display: block". For example:

You have something like (watch the text in red):

Code:
<li class="darw">ist <span class="chelsa-gem">eine Ärztin / ein Arzt</span> in den Folgetagen zu konsultieren.<br/><span class="fs-s" style="display: block">Im Moment keine Gefahr, aber es ist abzuklären ob eine Allergie vorliegt, zwecks Abgabe von Notfallmedikamenten wie Epipen bei einem späteren Stich. (Elternwissen).</span></li>
Remove the <br/> tag so that you have the following (watch the text in red):

Code:
<li class="darw">ist <span class="chelsa-gem">eine Ärztin / ein Arzt</span> in den Folgetagen zu konsultieren.<span class="fs-s" style="display: block">Im Moment keine Gefahr, aber es ist abzuklären ob eine Allergie vorliegt, zwecks Abgabe von Notfallmedikamenten wie Epipen bei einem späteren Stich. (Elternwissen).</span></li>
Of course, instead of styling inline, you can create a class like:

Code:
.block {
   display: block;
}
and to employ it as follow:

Code:
<li class="darw">ist <span class="chelsa-gem">eine Ärztin / ein Arzt</span> in den Folgetagen zu konsultieren.<span class="fs-s block">Im Moment keine Gefahr, aber es ist abzuklären ob eine Allergie vorliegt, zwecks Abgabe von Notfallmedikamenten wie Epipen bei einem späteren Stich. (Elternwissen).</span></li>
I think that the <br/> tags could be the cause of your issues.

Regards
RbnJrg is online now   Reply With Quote