jenningscreate
11/14/2018 - 6:52 PM

Navigation "Free Quote" Button

<!-- Insert this after the last dropdown in the navigation -->

<div class="contactDiv">
    <a href="/about-us/contact-us/" class="blue button w-button">Free Quote</a>
</div>
.contactDiv {
    float: right;
    padding-top: 25px;
    margin-left: 20px;
}

@media only screen and (max-width:768px) {
  
  .contactDiv {
    float:none;
    margin-left:0;
    margin-bottom:15px;
  }
  
  .contactDiv a {
    width:100%;
  }
}