Hi,
I would like to change the font size of a bullet point list. how do i accomplish this?
thanks!!
to influence the native list-point only – there is no way. Even a list-point color does not exist.
But you can set the list-points to display: none – and put in front of the list-items a different icon:
see an example here with all the code you need: https://webers-testseite.de/list-point-styling/
All i want is bigger font.
not the dots.
to influence the native list-point only – there is no way. Even a list-point color does not exist.
You can only influence the whole list item, it is not possible to influence only the list-style-type.
you do not need to set the color – then it will be inherited from text-block.
Are these red points dots? “disc” – so get rid of color property – and adjust the font-size to your needs.
if you just want to increase the font-size of the list-items select them by the li element and set the font-size property:
#top .avia_textblock > ul > li {
font-size: 18px;
}
Your wording and topic title led me a little astray. If only you had written: Font-size of the list – that would be clearer
To get the best help here, try to describe your project as well as possible.
Where are the lists? Are they in text blocks – or have you used the Enfold Advanced Element: ‘Icon List’?
It would always be best to see the relevant page. If you don’t want to make them public, there is a private content input field that only mods can see.
Hi,
Thank you for the inquiry.
Please try @Guenni007’s solution above or use this css code:
ul {
font-size: 18px; /* Adjust the size as needed */
}
ol {
font-size: 18px; /* Adjust the size as needed */
}
Best regards,
Ismael