Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

background color

edited October 2007 in Vanilla 1.0 Help
hi,
i want to change the background color of the discussions page only (not the side panel, or the top header where the title goes). i'm using vanilla with the default theme but i haven't figured out which property i need to change in the css file. could anyone help? thanks.

Comments

  • By adding the #DiscussionsPage #Content section below to the vanilla.css file right before the #DiscussionsPage .Bottom section, you'll have a green background around the Discussions area on the DiscussionsPAge:
    #DiscussionsPage #Content { /*jimw*/ padding: 8px 6px 2px 6px; background:green; } #DiscussionsPage .Bottom { margin: -6px 0px 8px 0px; }
  • thanks. i'm also trying to make the whole square below the top header and the side panel the same color. any other suggestions? thanks.
  • That's the "body" you want to change.
    body { margin:0px; padding:0px; background:#fff url('panelfade.gif') top left repeat-y; }
    Try changing the #fff to green or red to see what happens. Then, once you know that this is the area you want to change, put in the color you want.

    If you are using FF as your browser, you really should add the Web Developer add-on to help you identify the css stuff on your page.
  • jimw, I'm disappointed in how long it took you to answer that one! :-)

    Seriously, your depth knowledge, spot-on understanding of the issues and precise replies is worth $$$!
  • Wanderer: I've been trying to figure that out --- how to make some $$$ but then aren't we all.
  • thanks a lot! i'm new to vanilla and programming and all of that. so thanks for the replies. i really appreciate it.
This discussion has been closed.