With JD Builder, you can add custom CSS at any level on your page Section, Row, Column or any specific Element.
To add the CSS code follow these steps:
- Open the Layout Settings
- Go to Design > Custom CSS
- Add your CSS code in editor
NOTE: When targeting only a specific layout(section, row, column or element), you have to create ‘self’ named selector first and then add declaration. i.e:
self { padding: 50px 0; }
And in case of any inner layout(an element within any row or column or section), write the tag name only no need to mention the ‘self’ selector again.
h2.jdb-heading-heading { color: #000; }