Page 1 of 1
HTML bullet help
PostPosted: Wed Aug 16, 2006 5:36 pm
by Neko Niisan
Does anyone know how to change the colour on HTML bullet points without havng to create, host and link to images for them, only I have blcak points on black background so it kinda ain't working...
PostPosted: Fri Aug 18, 2006 5:40 am
by KBMaster
I think the only way you can do it is through CSS. It's the most effective way and it's the only way I know how. If you want to PM me, I can show you how to do it with CSS.
PostPosted: Fri Aug 18, 2006 7:08 am
by Mithrandir
KBMaster (with the cool ff9 avi) is pretty much right on - thought you could use DIV to do it as well, it's not as elegant.
PostPosted: Fri Aug 18, 2006 6:14 pm
by Neko Niisan
Mithrandir wrote:KBMaster (with the cool ff9 avi) is pretty much right on - thought you could use DIV to do it as well, it's not as elegant.
Please to help the newb and elaborate.
PostPosted: Fri Aug 18, 2006 6:54 pm
by Mithrandir
Well, if you use the style attribute you can change EVERYTHING on the list to a certain color. You can then use a div on each bit of text to change the TEXT back to what ever color you want. Like so...
- Code: Select all
<ul style="color:#44aa44">
<li><div style="color:#000000">a</div>
<li><div style="color:#000000">b</div>
<li><div style="color:#000000">c</div>
</ul>
That will give you list of green bullets with black text (a, b and c).
Let us know if you need more help, we're happy to help figure stuff out.