Click the bright green "+" in the top left corner and add a component to the page
Anywhere on your Flauntly page, right-click > inspect.
Select the selector icon and then click on the component you would like to stylize.
Click on the component. After the code is highlighted at the bottom for that selected component, double click the code and copy the info within the class parenthesis (class="copy-this-info")
Within your page editor, click on the Theme icon.
Within the themes panel, click inside the Custom CSS field.
Paste the class name inside the custom CSS field with this format:
ex.
.paste-class-name-here {
background-color: blue;
color: yellow;
}
ex.
.ql-align-center {
background-color: blue;
color: yellow;
}
*Don't forget the period "." before the pasted class name*
Paste this inside the custom CSS field:
.paste-class-name-here {
background-color: blue !important;
color: green !important;
}
*This step may be skipped if everything is already displaying as intended*
Nice job! Next, research other CSS styles that interest you and alter your Flauntly page to suit your awesome aspirations.