Forums

Join
bbPress Support ForumsPluginsA question about customizing bbcode buttons

Info

Tags

A question about customizing bbcode buttons

  1. I'm trying to customize bbcode buttons on one of my sites (I'll provide the link upon request for fear of offending anyone).

    My questions...

    I set the text color to grey and would like it to hover black. I'm not sure how to do this without a style sheet.

    Also, when I click one of the buttons - this / appears beside it. How can I make that not happen?

    Thanks,

    The plugin is really great and I look forward to using it more.

  2. I've hardcoded it in the javascript.
    edit it and change

    function edOver(element) {element.style.color="#000080"; element.style.backgroundColor="#ddd";}
    function edOut(element)   {element.style.color="#000000"; element.style.backgroundColor="buttonface";}

    to whatever color you'd like

  3. Thanks _ck_,

    It worked perfectly!

  4. You must log in to post.