I'm using ACF in wordpress for the simplest purpose, adding a description field.
PHP
<div id="description-div">
<p><?php the_field('description'); ?></p>
</div>
CSS
#description-div {
position: relative;
float: left;
width: 250px;
height: 300px;
}
#description-div p {
width: 250px;
}
But no matter how I enclose the text (tried with and without p and divs, giving them a width), it always overflows the parent divs. Here's the live example: http://no-plans.com/temp/wp-tobias/wordpress/?p=35
Any clue?