Hi,
Looked at your site and here is what I found:
The dot is actually style for
- applied by the theme for listing in bullet format i.e content property was applied by the skin.css present in theme. You can edit skin.css present in the currently activated theme.
Search below code in skin.css file :
.entry-content ul li:before {
content: '0b7' ;
color: #545454;
font-size: 46px ;
position: absolute ;
top: 7px ;
left: 4px ;
font-family: "Times New Roman", sans-serif ; }
Remove or comment ” content: ‘0b7’ ; ”
But the above solution will affect all
- present in other pages.
So, to avoid the above thing add below code in ‘ ua-front-end.css ‘ file.
.wdm-auction-listing-container ul li:before {
content: '';
}
div#auction-desc-tabs ul li:before {
content: '';
}
NOTE: If you update plugin in future then do add these changes again because plugin would be overwritten.
Regards,