li bullet color
Posted: Tue Mar 01, 2011 7:34 am
i'v a short question how to colorise a li bullet in cms ms
Content management as it is meant to be
https://forum.cmsmadesimple.org/
Code: Select all
ul {
list-style-image:url('image.gif');
}
Code: Select all
<ul class="color">
<li><span>One</span></li>
<li><span>Two</span></li>
<li><span>Three</span></li>
</ul>
Code: Select all
.color li{
color:red;
}
.color li span{
color:blue;
}
yesandre_designer wrote:is this also posible in the menu?? I thought that this not was posible with the <span> trick.