In tRealEstate theme, by default the list icons in sidebar a house icons and content uses the default html icons. If you want to change them (like the screenshot above), please follow these steps:
1.Login to your Admin Panel
2. Navigate to Left Menu -> Appearance -> Customize
3. Open ‘Additional CSS’ section
4. To change the sidebar list icons, insert the following code:
#sidebar ul:not(.social-widget):not(.ui-tabs-nav):not(#teammembers-grid):not(.teammember-social-icons) > li::before {
content: "\f054";
font-family: 'FontAwesome';
display: inline-block;
margin: 0 5px 10px 1px;
opacity: 0.7;
}
5. To change articles list icons, insert the following code:
article ul li::before {
content: "\f054";
font-family: 'FontAwesome';
display: inline-block;
margin: 0 5px 10px 1px;
opacity: 0.7;
display: inline-block;
}
article ul li {
list-style-type: none !important;
}
5. Save changes by clicking on ‘Publish’ button