jcadima
1/19/2016 - 9:11 PM

Custom Hash Tags Links - Anchor Links

Custom Hash Tags Links - Anchor Links

/*  
https://css-tricks.com/hash-tag-links-padding/
this will make space for a specific height , 
This is useful on fixed menus and lets you specify the height above the fixed menu
*/


<div id="location">
   <h1  class="text-center"></h1>
</div>



#location h1:before {
    display: block;
    content: " ";
    margin-top: -102px;
    height: 102px;
    visibility: hidden;
}