Without looking at it, I’m wondering if you can use CSS to hide the box. It won’t remove it physically, but it won’t display on the screen.
]]>Thanks for your reply.
This is one of the pages I’m looking to customize
I also tried replacing the <?php md_content_box(); ?>
line with the following:
<div class="custom-box">
<div class="inner">
<div class="format-text-main block-triple">
<?php get_template_part( 'content/headline' ); ?>
</div>
</div>
</div>
Which does remove the white content box but it also removes the subtitle and the headline image is no longer aligned with the posts beneath it. So that’s not an option.
]]><div class="custom-box">
<div class="inner">
<div class="format-text-main block-triple-tb pb-none">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content/headline' ); ?>
<?php endwhile; ?>
</div>
</div>
</div>
]]>