Does any one know how to change bullet points to a different symbol using css?
The symbol I want is ». I just don't want to use images :p
Printable View
Does any one know how to change bullet points to a different symbol using css?
The symbol I want is ». I just don't want to use images :p
i do it all the time i just c + p
Use the ul element with li tags
Then style the li with the CSS attribute list-style-type etc.HTML Code:<ul>
<li> </li>
</ul>
Do you mean the codes etc? » is = alt- 0187
Uhm, something to do with CSS yeah. I think you have to change the property for <li> using CSS, and making it so it goes to a certain style. I'm not too sure really, but I know it can be done.
How do I make the style raquo though?
Use:
That should work!Quote:
»
Uhm, style raquo? I'm confused... God, I'm supposed to be good at CSS too lol. You're all giving me the runaround. If you get it working, post it up. I'd like to see an example xD
It's not possible unless you use an image. Or you could do:
in your css
list-style-type: none;
and then <li>»blahblah</li>
Use images tbh. But I use
<ul>
<li>» This link</li
</ul>