I should note they’re showing up in Firefox, but not IE.
I just noticed something else – my twitter message which contains the words “Checking out new Google Reader sharing features” has the Google Reader icon next to it.
try the following:
in profilactic/style.css
after “#profilactic ul, #profilactic li, #profilactic ol {” (line13), add:
list-style-type: none;
#profilactic ul, #profilactic li, #profilactic ol {
list-style-type: none;
margin: 0px;
padding: 1px;
width: 100%;
Hiya, I haven’t modified the profilactic/style.css but I still get bullets on my lifestream.
It seems that the default is already listed as list-style-type: none;
This is my test blog:
http://pennybutler.com/blog/?page_id=3
Hmmm… looks like it’s inheriting the style from the following part of you .css file:
#contentleft ul {
list-style-type: square;
margin: 0px 0px 0px 20px;
padding: 0px 0px 10px 0px;
}
#contentleft ul li {
list-style-type: square;
margin: 0px 0px 0px 20px;
padding: 0px 0px 5px 0px;
}
I’m not sure why this is taking precedence since the <div id="profilactic"> tag is nested a step closer and should be used. I tried adding the above code to my site to see what happens and I still don’t see bullets.
As a test, can you try removing the list-style-type: square; lines and see what happens?