Link to home
Start Free TrialLog in
Avatar of jackjohnson44
jackjohnson44

asked on

dot is showing up as questin mark in a diamond

How do I get a dot like in a bullet point?
Untitled-1.jpg
Avatar of coolersport
coolersport
Flag of Australia image

You mean this:
<ul style="list-style-type:disc">
<li>One</li>
<li>Two</li>
</ul>

Open in new window

For custom shape, you need to create an image to look like it and apply the following:

(I borrow an image from http://unicode.org/reports/tr25/tr25-8-glyphs/diamsmf.gif as an illustration)
<style type="text/css">
<!--
ul{list-style-type:none}
li{padding-left:20px;background: transparent url(http://unicode.org/reports/tr25/tr25-8-glyphs/diamsmf.gif) no-repeat -10px 50%}
//-->
</style>
<ul>
<li>One</li>
<li>Two</li>
</ul>

Open in new window

Avatar of jackjohnson44
jackjohnson44

ASKER

Thanks, but I should have been more clear.

I am not trying to create a list.  I just need the dot in the middle of a sentence.
Can you just copy and paste it? ý
ASKER CERTIFIED SOLUTION
Avatar of coolersport
coolersport
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial