I'm trying to remove the whitespace between two sections in the html page, making one section directly above the second section with no whitespace between them. Example: below is the code of a subscribe to News section appearing above the Footer section.I want them to be on top of the other with no space between them.I can't get rid of the whitespace...
First section`==========<div id="NEWS" class="full dark" style="display:block; background-color:#4fbee0 !important; max-width:100%; height:auto; background-size: cover; border-bottom: none !important ;">
<div class="container">
<div class="row ">
<div class="col">
<h2 style="padding-top:30px">Subscribe to News</h2></div></div></div></div>
Second section======== <div id="wrapper" class="clearfix">
<footer id="footer" class="dark " style="background-color:#315B6F; margin-top: 0px; padding-top: -20px; width:100%; background-size: cover; border: none !important;">
<div class="container-fluid"> </div>
<!-- Footer Widgets
============================================= -->
<div class="footer-widgets-wrap">
<div class="container-fluid">
<div class="row text-smaller" style="padding-left:7%;">
<div class="col-sm-6 col-md-3 col-lg-2">
<ul style="list-style-type:none;">
<li><a class="text-larger" href="#" style="font-size:1.1em;font-weight:900;">Markets</font></a></li>
<div class="clearfix"> <li><a href="#">Commercial & Institutional</a></li>
<li><a href="#">Data Centers</a></li>
<li><a href="#">e-Commerce</a></li>
<li><a href="#">Housing</a></li>
<li><a href="#">Industrial & Manufacturing</a></li>
<li><a href="#">Power</a></li>
<li><a href="#">Transportation</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 col-lg-2">
<ul style="list-style-type:none;">
<li><a class="text-heading" href="#" style="font-size:1.1em;">Capabilities</a></font></li>
<li><a href="#">Custom Power Solutions</a></li>
<li><a href="#">Electrical</a></li>
<li><a href="#">Industrial Services</a></li>
<li><a href="#">Mechanical</a></li>
<li><a href="#">Technology Infrastructure</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 col-lg-2">
<ul style="list-style-type:none;">
<li><a class="text-heading" class="text-heading" href="#" style="font-size:1.1em;">About</a></font></li>
<li><a href="#">Our Story</a></li>
<li><a href="#">Our Business Units</a></li>
<li><a href="#">Leadership</a></li>
<li><a href="#">Board of Directors</a></li>
<li><a href="#">Corporate Leadership</a></li>
<li><a href="#">Operating Executives</a></li>
<li><a href="#">Corporate Policy</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 col-lg-2">
<ul style="list-style-type:none;">
<li><a class="text-heading" href="#" style="font-size:1.1em;">Investors</a></font></li>
<li><a href="#">Stock Information</a></li>
<li><a href="#">SEC Filings</a></li>
<li><a href="#">Presentations</a></li>
<li><a href="#">Corporate Governance</a></li>
<li><a href="#">Financial Information</a></li>
<li><a href="#">Financial Reports</a></li>
<li><a href="#">Shareholder Information</a></li>
<li><a href="#">Investor FAQs</a></li>
<li><a href="#">Press Releases</a></li>
<li><a href="#">Information Request</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 col-lg-2">
<ul style="list-style-type:none;">
<li><a class="text-heading" href="#" style="font-size:1.1em;">Corporate Responsibility</a></font></li>
<li><a href="#">Safety</a></li>
<li><a href="#">Environmental</a></li>
<li><a href="#">Social</a></li>
<li><a href="#">Governance</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 col-lg-2">
<ul style="list-style-type:none;">
<li><a class="text-heading" href="#" >Careers</a</li>
<li> </li>
<li><a class="text-heading" href="#">Contact</a></li>
<li> </li>
<li><a class="text-heading" href="#">Corporate Office</a></li>
</ul>
</div>
</div> </footer> ```````
