Hey there, I’d like to add this symbol which comes with the theme http://prntscr.com/n7srvl
as my bulletpoints
Thanks for our help!
Hi @zerotoone.de,
Please try this code in the Global CSS and make sure to change the image URL in the code to the URL of the image you want to use as the bullet point:
.entry-content ul {
margin: 0;
list-style: none;
}
.entry-content ul li {
background: transparent url(http://chittagongit.com//images/check-icon-small/check-icon-small-0.jpg) 0 2px no-repeat;
background-size: 21px 21px;
padding-left: 30px;
}
Hope this helps.
the icon is part of the classic icon element, is it possible to get it prom there or simply add a shortcode to the desired place in my text?
thank you
Hi @zerotoone.de,
This should do it:
.entry-content ul {
margin-left: 0;
list-style: none;
}
.entry-content ul li {
position: relative;
padding-left: 25px;
}
.entry-content ul li:before {
content: '\f058';
font-family: "FontAwesomeLight";
font-weight: 300;
color: red;
position: absolute;
left: 0;
}
Hope this helps.
Thank you works great, but how can I resize the icon now?
Hi @zerotoone.de,
You can still use/add font-size: 20px to .entry-content ul li:before.
Hope this helps.
Thank you, how can I shift the icons up vertically?
Hi @zerotoone.de,
You can use top: 5px; to ul li:before.
https://www.w3schools.com/css/css_positioning.asp
Hope this helps.
THank you, you are fast 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.