<div class="full-width awards">
<h2><span>Awards</span></h2>
<div id="accordion" class="accordion awards-list">
<?php if (get_field( 'awards_&_festivals' ) ) : ?>
<h3 class="award-title" ><span class="down-icon">Awards & Festivals</span></h3>
<div class="award-content" >
<?php the_field( 'awards_&_festivals' ); ?>
</div>
<?php endif; ?>
</div>
I wanted to hide the awards div when the_field does not have any content any idea on how to make this happen? Much appreciated.