Skip to content

Instantly share code, notes, and snippets.

@becahp
Created November 26, 2020 20:49
Show Gist options
  • Save becahp/fa84a18410b6967d598a89486de05e42 to your computer and use it in GitHub Desktop.
Save becahp/fa84a18410b6967d598a89486de05e42 to your computer and use it in GitHub Desktop.
Listas dos Elementor
/*
Sometimes Elementor doesn't print out the bullets/numbers of an ordered list
You need to add an ID to the section (listBullet or listNumber) and define the following css:
*/
.listBullet li{
list-style-type: disc;
margin-left: 20px;
margin-top: 5px;
}
.listNumber li{
list-style-type: decimal;
margin-left: 20px;
margin-top: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment