Hello
When using bullet points in a text block or icon list text part, is there a way to make the text indented to the same level as the starting point when the text goes on a new line? Here is an example of the text not indenting: http://goo.gl/VZkUWP
Thanks very much if you can help.
Hey!
Try adding this code to the Quick CSS:
.iconlist_content ul {
margin-left: 0 !important;
}
Cheers!
Josue
Hi
Thanks a lot for your quick response; sorry that did not work. Do you have any other possible suggestion?
Thank you for your help.
Hey!
Use this code instead:
.iconlist_content ul {
display: table;
}
.iconlist_content li {
display: table-row;
}
.iconlist_content li::before {
content: "•";
display: table-cell;
text-align: right;
padding-right: 6px;
}
Best regards,
Josue
Ok that worked but the bullet points now no longer show up. ?
Thanks again.
Hey!
I modified my previous message, use that code instead, if it doesn’t work please provide me with an administrator account so i can look at it.
Best regards,
Josue
Hi , thanks a lot that worked perfectly :)