
how do I remove or erase the <br> symbol after a line of typing?
I am designing a Landing Page in Kunversion and the different sentences have
when moving from one insert to another. This symbol continues onto the Facebook publish page. Is there a way to remove or eliminate the
.
Chosen solution
I think that is how the rich text (HTML) editor you use works. Some editors use a <DIV> or <P> block as a paragraph separator. In the past this used to be a <br>
You shouldn't see this as plain text if you is what you experience.
Maybe you can change this behavior in the settings.
Read this answer in context 👍 0All Replies (2)
Hi !
With css, you can 'hide' the <br> tags and they won't have an effect :
br {
display: none;
}
Does that work for you ?
Modified
Chosen Solution
I think that is how the rich text (HTML) editor you use works. Some editors use a <DIV> or <P> block as a paragraph separator. In the past this used to be a <br>
You shouldn't see this as plain text if you is what you experience.
Maybe you can change this behavior in the settings.