I have the following page: http://simplytelecare.co.uk/services/policy/digital-inclusion/
Underneath ‘did you know’ and ‘digital inclusion briefings’ I have inserted bullet lists. The <ul>
and <li>
tags are there as they should be, but no list is appearing even though the text appears to be indented.
On this page it’s obviously set to full width, and there’s a full width grid row above. The headers are made using the ‘special header’ element and the text blocks are from the ‘text block’ element of the ALB.
Any advice as to why they’re not showing up?
Hello,
I have no idea, why it’s not showing.
But you can change the list style with custom CSS.
The following code applies the style to all lists that are inside a textbox:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
.avia_textblock li {
list-style-type: square;
}
For more list options see: http://www.w3schools.com/cssref/pr_list-style-type.asp
Greetings
Flikk
That’s great – worked perfectly. Thanks for your help.