HI Guys,
How can i change the bullet size without sizing up the text as well?
I tried a few codes yall placed here
like: content-wrapper ul li {
font-size: 16px ;
}
but it doesnt work for me.
Any other suggestions?
Hey Angelo,
To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Best regards,
John Torvik
I am sorry it should be open now
Hi,
Please use the following css code.
ul.disc, .entry-content-wrapper ul {
list-style: none;
line-height: 30px;
}
ul.disc li:before {
content: "·";
font-size: 80px;
vertical-align: top;
line-height: 25px;
margin-left: -20px;
}
Adjust the font size as much as you’d like.
Best regards,
Ismael
nothing is changin with this unfortunaly
Hi,
Try this code in the General Styling > Quick CSS field:
ul.disc, .entry-content-wrapper ul {
list-style: none!important;
line-height: 30px;
}
.entry-content-wrapper ul li:before {
content: '\00b7'!important;
font-size: 100px!important;
vertical-align: middle!important;
line-height: 80px!important;
margin-left: -20px!important;
}
Best regards,
Mike
yes this is working perfect!