Making background wrapper semi transparent

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bxb
    Member
    • Nov 2012
    • 31

    Making background wrapper semi transparent

    Ive been trying to find where in css I need to make a change to make the background wrapper semi transparent. I want to keep it white so do I just add code and keep the color white or add white image and opacity code?

    Thx
  • Wayne Luke
    vBulletin Technical Support Lead
    • Aug 2000
    • 74132

    #2
    You'll probably want to use an RGBA color format which allows you to set the Alpha Layer for transparency. From inspecting the background here: http://sedona.vbulletin.net/, I get:

    Code:
    background-color: rgba(240, 240, 240, 0.8) !important;
    Adjusting the last parameter from between 0 and 1 will adjust the transparency level. You should just be able to enter that into the stylevar for the wrapper_background. If that doesn't work, wrap it in style tags and place it in one of the header ad sections by editing the header in Site Builder. We're bringing better CSS handling to cloud in 5.1.2.

    Translations provided by Google.

    Wayne Luke
    The Rabid Badger - a vBulletin Cloud demonstration site.
    vBulletin 5 API

    Comment

    • bxb
      Member
      • Nov 2012
      • 31

      #3
      Yes that's exactly what Im looking for, so I can just replace the color in style var thru admin cp with

      rgba(240, 240, 240, 0.8) !important; ?

      Comment

      • bxb
        Member
        • Nov 2012
        • 31

        #4
        Works perfect...Thanks!!!

        Comment

        Related Topics

        Collapse

        Working...