li bullet color
-
- Forum Members
- Posts: 233
- Joined: Sat Apr 10, 2010 4:26 am
li bullet color
i'v a short question how to colorise a li bullet in cms ms
Re: li bullet color
You can use image:
Or colorise with span tag
perhaps there are and other ways to do...
Code: Select all
ul {
list-style-image:url('image.gif');
}
Or colorise with span tag
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;
}
-
- Forum Members
- Posts: 233
- Joined: Sat Apr 10, 2010 4:26 am
Re: li bullet color
is this also posible in the menu?? I thought that this not was posible with the <span> trick.
Re: li bullet color
yesandre_designer wrote:is this also posible in the menu?? I thought that this not was posible with the <span> trick.
Re: li bullet color
Most all of the menu templates have a <span> in them, right click a page and view page source to see...