Skip to content

Instantly share code, notes, and snippets.

@Sarahhoof
Sarahhoof / hidden_preheader_example.html
Last active September 29, 2015 16:29
Hidden pre header for newsletters
<span style="display: none !important; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;">This is a text block. Write your hidden preheader here.</span>
@Sarahhoof
Sarahhoof / visable_prehader_example.html
Last active September 29, 2015 16:29
Visable preheader for newsletters
<body>
<div>
This is a text block. Write your visable preheader here.
</div>
</body>
@Sarahhoof
Sarahhoof / FontAwesomeCheckMarks.html
Last active October 15, 2015 13:27
Font Awesome Check Marks
<ul>
<i class="fa fa-check"></i>
<i class="fa fa-check-square-o fa-2x"></i>
<i class="fa fa-check-circle" style="color: green;"></i>
<i class="fa fa-check-square" style="color: red;"></i>
</ul>
@Sarahhoof
Sarahhoof / HTMLCheckMarks.html
Last active October 15, 2015 13:41
HTMLCheckMarks
<ul>
&#9989; check
&#10003; mark
&#10004; bock
</ul>
@Sarahhoof
Sarahhoof / Hide <div> in Mobile.html
Last active November 25, 2015 08:58
Hide <div> in Mobile
//medium screen sizes
@media (min-width:992px) {
.desktop-only {
display:block !important;
}
}
//small screen sizes
@media (max-width: 991px) {
.mobile-only {