I built a WordPress theme with bootstrap, The whole page is responsive apart from this part that I can't get responsive is the section below:
.showcase {
height: 600px;
padding: 100px 20px;
text-align: center;
border-bottom: #ccc 1px solid;
margin-bottom: 30px;
color: #fff;
}
.showcase h1 {
font-size: 35px;
padding-bottom: 20px;
color: #fff;
}
.showcase p {
font-size: 20px;
margin-bottom: 50px;
}
<section class="showcase">
<div class="container">
<h1>
<?php echo get_theme_mod('showcase_heading', 'Jon Doe'); ?>
</h1>
<p>
<?php echo get_theme_mod('showcase_text', 'Making The Tractors Work For You!'); ?>
</p>
<a href="<?php echo get_theme_mod('btn_url', '#'); ?>" class="btn btn-primary btn-lg">
<?php echo get_theme_mod('btn_text', 'Read More'); ?>
</a>
</div>
</section>
Any help or tips would be much appreciated, thanks.