Advertisement
bphelp

Change Background Color By Integrating CSS Within PHP

Mar 24th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. function bphelp_change_background() {
  3. ?>
  4. <style type="text/css">
  5. div#message-thread div.alt {
  6. background: #ffffff !important;
  7. }
  8.  
  9. </style>
  10. <?php
  11. }
  12. add_action ('bp_head', 'bphelp_change_background');
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement