I initially tried using an unordered list in a HTML/Javascript gadget:
<ul style="list-style-type:disc;">
<li><a href="http://www.bloggertipsandtricks.com">Blogger Tips and Tricks</a></li>
<li><a href="http://bloggerfordummies.blogspot.com">Blogger for Dummies</a></li>
<li><a href="http://blogger-book.com">Online Blogger Book</a></li>
<li><a href="http://blogger-faq.blogspot.com/">Blogger FAQ</a></li>
</ul>
<li><a href="http://www.bloggertipsandtricks.com">Blogger Tips and Tricks</a></li>
<li><a href="http://bloggerfordummies.blogspot.com">Blogger for Dummies</a></li>
<li><a href="http://blogger-book.com">Online Blogger Book</a></li>
<li><a href="http://blogger-faq.blogspot.com/">Blogger FAQ</a></li>
</ul>
That didn't work, so it must be the CSS (Cascading Style Sheets). So I went to LAYOUT > EDIT HTML and edited this
.sidebar ul {
list-style:none;
margin:0 0 0;
padding:0 0 0;
}
to
.sidebar ul {
list-style-type:disc;
margin:0 0 0;
padding:0 0 0;
}
I tried this at Star Home Improvements. The codes for the unordered list <ul> was placed in the first right sidebar. As you can see, the "bullets" didn't display.