Posted - 03/29/2023 : 14:39:46
Hi, that's because your extra text on the page is not part of the detail description and does not have any class assigned to it. Just go into your custom code and create a class there - <li class="mylist">Your content</li> Then go to the stylesheet and add your class to that
div.detaildescription ul,mylist { list-style-image:url(../images/check.gif); padding-left:30px; } div.detailshortdescription ul,mylist { list-style-image:url(../images/check.gif); padding-left:30px; }
Alternately, if you always want the checkmarks for all lists, in place of bullets, then you could just add the following to your stylesheet li { list-style-image:url(../images/check.gif); padding-left:30px; }
Thanks, David
Edited by - dbdave on 03/29/2023 14:42:55
|