0

The designer sent me this project to develop in Wordpress, was all good, until I found these columns that I could only separated using paragraphs and floats (left aligned).

Unfortunately this choice scrambles paragraphs, making reading end user as not reflected in the image.

How I can resolve this?

Please see the image for example:

enter image description here

Where Title is the_tile();, and Paragraph is <p></p> tags in HTML output (front-end)

From already thank you very much.

MrRoman
  • 793
  • 2
  • 7
  • 17

1 Answers1

0

The easiest method would be to use CSS columns (http://css-tricks.com/snippets/css/multiple-columns/), but I believe that's not support in IE9 and below.

Splitting content created in the standard WYSIWYG editor by paragraph could be challenging, as the markup it generates isn't always that clean.

Chris Herbert
  • 6,145
  • 3
  • 19
  • 31