How to style the output-list

Hello forum,

I’d like to have the result list with a “dot” (list-style-type: circle;) before.

<nav>
<span style="color: rgb(144,238,144)">Stefan/</span><$edit-text field=selection placeholder=Suche... /> 
</nav>

<$set name="selection" value={{!!selection}}>

<ul>

<$list filter="[!is[system]sort[caption]prefix[Stefan/]search:title,caption<selection>]"/>

</ul>

How can I do that?

1 Like

Change this:

<$list filter="[!is[system]sort[caption]prefix[Stefan/]search:title,caption<selection>]"/>

to this:

<$list filter="[!is[system]sort[caption]prefix[Stefan/]search:title,caption<selection>]">
   <li><$link/></li>
</$list>

Thanks @Eric - works great!

The second example here also shows how to introduce other characters such as Unicode.