- This topic has 10 replies, 2 voices, and was last updated 6 years, 7 months ago by
Leo.
-
AuthorPosts
-
July 15, 2019 at 1:35 am #958069
Ronja
I would like to have coloured and bigger bullet points for lists in my posts. I tried this CSS I found in the support area:
ul.custom-list {
list-style: circle;
margin-left: 0.25em;
}ul.custom-list li::before {
content: ”;
display: inline-block;
width: 0.3em;
height: 0.3em;
margin: 0.2em 0.8em 0.2em 0;
background-color: #149184;
}If I insert this to my website I get a tiny black bullet with white filling and a square next to it.
Could you please help me remove the square and colour the complete bullet in this colour: #149184? The background should be uncoloured so I guess I filled that in wrong as well.July 15, 2019 at 8:36 am #958450Leo
StaffCustomer SupportHi there,
Where can I see the list in your site?
Let me know 🙂
July 15, 2019 at 5:38 pm #958816Ronja
I inserted a test list into my latest post right at the top. I added “custom-list” to the additional css. Now suddenly it’s just a black bullet… 🙈
July 15, 2019 at 6:34 pm #958834Leo
StaffCustomer SupportCan you try
custom-listinstead ofCustom-listas the class name?Let me know 🙂
July 15, 2019 at 9:46 pm #958907Ronja
https://www.backpackertales.com/12-highlights-der-bay-of-islands
Yep, now it went back to the circle and square. I just want a completely coloured circle.July 16, 2019 at 8:41 am #959339Leo
StaffCustomer SupportCan you try this instead?
https://www.w3schools.com/howto/howto_css_bullet_color.aspJuly 16, 2019 at 8:07 pm #959836Ronja
Hi Leo, thank you very much. I got it! And now I even have the bullet points without typing in custom-list in every post.
This is the code I used:
ul {
list-style: none;
}ul li::before {
content: “\2022”;
color: rgba(0,84,84,0.63);
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
font-size: 1.1em;
}July 17, 2019 at 12:36 am #959920Ronja
I´m sorry, but there´s one more thing. I just saw, that my menu now shows the blue bullets. Is there any way to remove them on the menu?
July 17, 2019 at 8:42 am #960325Leo
StaffCustomer SupportTry this instead:
.inside-article ul { list-style: none; } .inside-article ul li::before { content: "\2022"; color: rgba(0,84,84,0.63); font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; font-size: 1.1em; }July 18, 2019 at 12:00 am #960808Ronja
Yes! That´s it!
Thank you so much!! 🙂July 18, 2019 at 7:57 am #961227Leo
StaffCustomer SupportNo problem 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.