Hello,
I am looking to remove the carrot arrows in the below picture. I would like them to be bullets or nothing at all. Using Yellow Pencil I can see how to make it a bullet, but I cannot seem to figure out how to get rid of the existing arrow. I am using theme Rental Hive
Hi,
Please try this CSS snippet:
.site-footer li::before {
display: none;
}
.site-footer li {
padding-left: 0;
}
Please note that you may require additional customizations in the future.