Hi ,
I have the below <ul> defined on my page.
It works fine however I would like the list-styles to be larger.
? Is this possible ?
ALSO.... I have <li> defined. How will I style this into a style sheet? I'm asking as each of the list-items are different colors. This would not follow the normal rules then of defineing a <li> style in css.
Anyway help would be much appreciated
Code:
<div class="events">
<ul>
<li style="list-style:square; color:#993399;"><a href="#">Lectures, Seminars and conferences</a></li>
<li style="list-style:square; color:#0099CC;"><a href="#">Exhibitions</a></li>
<li style="list-style:square; color:#CC3366;"><a href="#">Concerts</a></li>
<li style="list-style:square; color:#006633;"><a href="#">Short courses and workshops</a></li>
<li style="list-style:square; color:#FFFF00;"><a href="#">Calendar of all events</a></li>
</ul>
</div>
cheers
Steve
|