I've an issue with creating 3 columns in HTML+CSS
This is the html code:
<div class="views-field-field-pdf-fid"></div>
<div class="views-field-field-content-value"></div>
<div class="views-field-field-image-fid"></div>
<div class="views-field-title"></div>
<div class="views-field-field-date-value"></div>
What I want is 3 columns:
1st column: title, date-value
2nd column: image-fid
3rd column: content-value, pdf-fid
So far, I've tried to add float:right property to content-value, pdf-fid and image-fid. Unfortunately I cannot keep content-value and pdf-fid on the same column.
ps. I can swap the divs in the html code but not grouping them using parent divs. thanks