<p class or Qode plug-in blocking <br> line breaks

Viewed 24

I am working on a website and have integrated a plug-in for a timeline. They are asking for line breaks between the awards in the timeline and < br > and < p > are not working and are being shown as code. Is there a way to force line breaks somehow?

The website/timeline in question is on this page http://antonior60.sg-host.com/about

1 Answers

You can refer to how to break the line here link

div{
word-wrap : break-word;
}

You must set the width of the appropriate div tag to break the line

Related