Advertisement
bphelp

Remove Bullets From Your Theme

Mar 23rd, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2. function remove_bullets() {
  3. ?>
  4. <style type="text/css">
  5. li {
  6. list-style-type: none;
  7. }
  8.  
  9. </style>
  10. <?php
  11. }
  12. add_action ('bp_head', 'remove_bullets');
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement