Forked from zeshanshani/enfold-column-spacing-change.css
Created
October 2, 2021 10:10
-
-
Save leenswitts/5acf13c10e7bace67e0e0bb59de8412b to your computer and use it in GitHub Desktop.
Overwrites default column spacing of Enfold Theme to 30px top/bottom/left/rigth.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Columns | |
* | |
* Overwrites the default | |
* enfold column gutter | |
* spacing to add a gap of | |
* 30px | |
* | |
* Author: Zeshan Ahmed | |
* Author URL: http://www.zeshanahmed.com/ | |
* | |
*/ | |
/* ===================== */ | |
body .column-top-margin { | |
margin-top: 30px; | |
} | |
div .av_one_fifth { | |
margin-left: 3%; | |
width: 17%; | |
} | |
div .av_one_fourth { | |
margin-left: 3%; | |
width: 22%; | |
} | |
div .av_one_third { | |
margin-left: 3%; | |
width: 30.33%; | |
} | |
div .av_two_fifth { | |
margin-left: 3%; | |
width: 38.5%; | |
} | |
div .av_one_half { | |
margin-left: 3%; | |
width: 48.5%; | |
} | |
div .av_three_fifth { | |
margin-left: 3%; | |
width: 58.5%; | |
} | |
div .av_two_third { | |
margin-left: 3%; | |
width: 66.666667%; | |
} | |
div .av_three_fourth { | |
margin-left: 3%; | |
width: 75%; | |
} | |
div .av_four_fifth { | |
margin-left: 3%; | |
width: 80%; | |
} | |
div .av_one_sixth { | |
margin-left: 3%; | |
width: 14.16%; | |
} | |
div .av_one_seventh { | |
margin-left: 3%; | |
width: 11.71%; | |
} | |
div .av_one_eighth { | |
margin-left: 3%; | |
width: 9.876%; | |
} | |
div .av_one_nineth { | |
margin-left: 3%; | |
width: 8.446%; | |
} | |
div .av_one_tenth { | |
margin-left: 3%; | |
width: 7.3%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment