Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

heart bullet points for each item?

More
9 years 5 months ago #3804 by [email protected]
That works. Thank you again.

How would I use a different bullet? Could I use a .png file for my bullet point?

Please Log in or Create an account to join the conversation.

More
9 years 5 months ago #3805 by [email protected]
background-image: url(sqpurple.png); ?

Would i need any other code in there?

Please Log in or Create an account to join the conversation.

More
9 years 5 months ago - 9 years 5 months ago #3806 by admin
Replied by admin on topic bullet points for each item?
No, you should just apply the standard CSS properties for bullet lists:
list-style-image: url('sqpurple.png');

Note that you will have to adjust the path to 'catch' the image. Probably something like:
url("../../images/sqpurple.png")
where sqpurple.png is located in the media manager.

Olivier.
Last edit: 9 years 5 months ago by admin.

Please Log in or Create an account to join the conversation.

More
9 years 5 months ago #3814 by [email protected]
so replace:
.latestnewsenhancedextended_313 .newstitle {
display: list-item;
list-style-type: disc;
list-style-position: inside;
}

with

.latestnewsenhancedextended_313 .newstitle {
display: list-item;
list-style-type: disc;
list-style-position: inside;
list-style-image: url('sqpurple.png');
}

?

Please Log in or Create an account to join the conversation.

More
9 years 5 months ago #3815 by [email protected]
got it all. thanks for your help. hopefully i won't have any more questions!

Please Log in or Create an account to join the conversation.

More
9 years 5 months ago #3818 by admin
Replied by admin on topic bullet points for each item?
No problem, you are welcome.
BTW, if you have the list-style-image, the list-style-type property is obsolete.

Olivier.

Please Log in or Create an account to join the conversation.