Text in p tag is not breaking to new lines
css, html
Solution
Use: `word-wrap: break-word;` on your paragraph elements. That'll then start forcing them to start a new line.
.entry-footer .excerpt p {
word-wrap: break-word;
}
See firefox word-wrap documentation.
Problem
Please have a look at the following image: And here is the code with the problem: ``` <div class="excerpt"> <p>Manual para la descarga e instalación de los contenidos digitales del Proyecto Canaima Educativo, conformado por recursos de aprendizaje que buscan impulsar la interacción entre el[...]</p> </div> ``` For some bizarre reason the text is getting on top of the columns to the right. I tried changing the height of all of the elements taking part to 1000px, and they are STILL overlapping! EDIT: Question had a link originally so now that it was succesfully answered I changed it with an image per @Roddy of the Frozen Peas suggested. As some people suggested, if you remove the & nbsp; the problem goes away. But that was not the case as it looks like the admin was inserting those & nbsp; and I have no saying in changing the admin. So the accepted answer finally solved it.