Skip to content

Instantly share code, notes, and snippets.

View dheckel77's full-sized avatar

David Heckel dheckel77

View GitHub Profile
@dheckel77
dheckel77 / header-background.css
Last active February 3, 2016 22:29
Add a Quasi-Transparent Background Image to the Divi Header
#main-header::after {
content: "";
background-image: url('yourimagegoeshere.png');
background-size:cover;
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
@dheckel77
dheckel77 / pointer.css
Last active February 3, 2016 22:15
Add a pointer to the bottom of a header in Divi
.pointer
.pointer:before {
right: 50%;
border-right: 100px solid transparent;
border-left: 1000px solid #fff;
}
.pointer:after {
left: 50%;
border-left: 100px solid transparent;
border-right: 1000px solid #fff;