Judy1997
Member
Posted 2 years ago #
I am trying to make a bulleted list on my "about" page. I'm using the visual editor, and they show up there. But when I go to my actual blog site, they do not show up. The items indent, but there are no bullets. Does anyone know what to do? If there are any solutions that don't involve editing CSS, that would be great, since I have no idea how to do so! But if not, then please let me know what to do anyway, and I'll pass it along to my webmaster.
Thanks!
a url would help but chances are, it's specified in your css.
Judy1997
Member
Posted 2 years ago #
My url is 2minutehomeschooltools.com. Now, interestingly enough, I changed it to a numbered list, and the numbers show up. But bullets are really what's needed...
in your style.css file you have an entry
.entrybody ul {
margin-left: 20px;
list-style-type: none;
}
comment out the list-style-type: none; line by using
/* list-style-type: none: */
your round bullets should now show up since that is the default for an unordered list.
Judy1997
Member
Posted 2 years ago #
Cool - thanks, viceng. I'll pass that along.