I am trying to add square bullets inside my widgets, for example the Categories widget In Swedish "Kategorier" look at
Tested with
.widget ul li {
#navlist li { list-style-type: square; }
}
but no result.
Any ideas?
THX!
Best Answer Danny , 03 February 2013 - 02:40 PM
Hi Patrik,
Add the following to your custom CSS:
.widget_categories ul li, .popular-posts ul li {
display: list-item;
margin-left: .5em;
list-style-type: square;
}
Go to the full post
Posted 03 February 2013 - 01:57 PM
I am trying to add square bullets inside my widgets, for example the Categories widget In Swedish "Kategorier" look at
Tested with
.widget ul li {
#navlist li { list-style-type: square; }
}
but no result.
Any ideas?
THX!
Posted 03 February 2013 - 02:40 PM Best Answer
Hi Patrik,
Add the following to your custom CSS: