square_eyes
Member
Posted 4 months ago #
I want remove list numbers/bullets and the indent.
I have added the below in my main stylesheet.css but it's not working. Is there something I'm missing?
/* twitter-tracker Widget */
.widget_twitter-tracker ul {
padding: 0;
list-style: none;
outside none;
}
http://wordpress.org/extend/plugins/twitter-tracker/
Have you been able to solve this issue? I have the same problem. Thanks in advance.
square_eyes
Member
Posted 3 months ago #
donagher
Member
Posted 1 month ago #
Twitter Tracker is using an ordered list (ol) not an unordered list (ul). Try changing the "ul" to "ol" in your code.
I used this code to change from numbers to circle bullets:
#twitter-profile-tracker-2 ol {
list-style-type: circle;
}
jaymal7
Member
Posted 1 month ago #
Try the following that I am using on my site to remove the numbers and indent:
.widget_twitter-tracker ol.tweets {
list-style-type: none;
margin: 0 0 0 0;
}