Skip to content

Instantly share code, notes, and snippets.

View amandalucas's full-sized avatar

Amanda Lucas amandalucas

View GitHub Profile
@amandalucas
amandalucas / 5-or-more-columns-in-Divi.css
Created January 9, 2018 12:48
Create 5,or more columns easily in Divi
/* Add the class you need eg. five-columns to the ROW - not the module */
/*----------5 Columns----------*/
.five-columns .et_pb_module {
float: left;
width: 20%!important;
padding: 20px;
}
/* make three appear on a tablet row */
@amandalucas
amandalucas / divi-slider-transparent-text.css
Created January 9, 2018 11:37
Make your Divi slider text easier to read by adding a semi-transaprent background to the slider. Just add the following CSS:
.et_pb_bg_layout_dark
.et_pb_slide_description {
background-color: rgba(0,0,0,0.5);
display: inline-block;
padding: 50px;
margin: 100px;
border-radius: 15px;
}