Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Background for embed theme & Q&A drop down

  1. I tried to change in the css file the background for the embed theme. Yet it stays the same, even when reload the css and do hard refresh. Already tried clearing browser cache. Just to be sure, what am I supposed to edit there?
    I had edited themes/EmbedFriendly/design/custom.css

  2. I installed the Q&A plugin. Was curious to how to set it up like here, where have the choices as drop down on Start a New Discussion button.

Thank you.
Burke

Best Answer

  • TamaTama ✭✭✭
    edited July 2013 Answer ✓

    Hmm, navigate to your css file on your web browser, and see if the changes have been applied there. If they have, try adding "!important" to the end of the css statement which changes the background color

    body {
       background: #222 !important;
    }
    

    you may also have to add

    body {
       background-color: #222 !important;
       background: #222 !important;
    }    
    

    There was an error rendering this rich post.

Answers

  • TamaTama ✭✭✭
    1. Try editing about.php , incrementing the version number and see if it refreshes then.

    There was an error rendering this rich post.

  • Nope. Did nothing.

    Also, on the Q&A, how do I set it so Discussion is default, not Question?

  • TamaTama ✭✭✭
    edited July 2013 Answer ✓

    Hmm, navigate to your css file on your web browser, and see if the changes have been applied there. If they have, try adding "!important" to the end of the css statement which changes the background color

    body {
       background: #222 !important;
    }
    

    you may also have to add

    body {
       background-color: #222 !important;
       background: #222 !important;
    }    
    

    There was an error rendering this rich post.

  • Thank you, that worked perfectly! :)

    Now to find out about the Q&A fixes. :)

  • Found solution to the Q&A default issue. :)

Sign In or Register to comment.