Dear support team,
i am using an image for list styling with the following css:
.entry-content-wrapper div li {
list-style: none;
background: url(‘image-url’) no-repeat left top;
padding-left: 21px;
}
But the list-style-image also appears in the slider-link and at the social share buttons for example. Is it possible to show this list style images in the copy of the content lists only?
Hi dondela,
Please try the following CSS instead, I think it should work better:
.avia_textblock ol li {
list-style: none;
background: url(‘image-url’) no-repeat left top;
padding-left: 21px;
}
Thanks,
Rikard
Thanks for the help, that made it!