This is a WordPress site, the classes/ID's are generated, I can't just go in and add a class.
Yes, I have firebug... but I'm so twisted around and confused as to whether this is coming from BuddyPress or.... that I'm just asking for help on finding the id or class that I'd say list-style-type: none;
I need to have ULs with bullets working in the general contact area, but not in the sidebar or on the group categories. http://ratest4.com/art-categories/
Here is the code I want the bullet removed from (Gallery Hours h3):
<div id="primary" class="widget-area" role="complementary"> <ul class="xoxo"> <li id="text-3" class="widget-container widget_text"><h3 class="widget-title">Gallery Hours</h3>
And here is CSS that came with the style sheet, that did work PRE Buddypress
.widget-area ul { list-style: none; margin-left: 0;}
So... why isn't that working?
Also for the sidebar widget titles / h3s I have this but it too is not obeying:
.widget-title { background:#555555; color: #fff; font-weight: bold; }
While these bullets in the sidebar were not there pre-BuddyPress install (in standard WordPress, they are now.
Adding the "list-style: none" CSS class to the unordered list (<ul>) or ordered list (<ol>) tag removes any bullet or number.
you can also add class="list-unstyled" to the ul to remove all the bullets. Removes all default list-style (bullets, left margin, etc.) styling from a or list. Save this answer.
The removal of the list bullets is not a complex task using CSS. It can be easily done by setting the CSS list-style or list-style-type property to none. The list-style-type CSS property is used to set the marker (like a disc, character, or the custom counter style) of a list item element.
You have a selector ul
on line 252
which is setting list-style: square outside none
(a square bullet). You'll have to change it to list-style: none
or just remove the line.
If you only want to remove the bullets from that specific instance, you can use the specific selector for that list and its items as follows:
ul#groups-list.items-list { list-style: none }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With