Forum transparency

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Danloona
    Senior Member
    • Mar 2015
    • 543
    • 4.2.5

    [Site Builder] Forum transparency

    I've added body background, but my forum becomes now transparent:

    Where I can fix that or I change forum colours ?

    Thanks
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24287
    • 6.0.X

    #2
    Sounds like an error in your custom css code.

    What code (exactly) did you add, and where?
    MARK.B
    vBulletin Support
    ------------
    My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
    My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

    Comment

    • Danloona
      Senior Member
      • Mar 2015
      • 543
      • 4.2.5

      #3
      I've added url link to image path in stylevar through admincp.

      Comment

      • Wayne Luke
        vBulletin Technical Support Lead
        • Aug 2000
        • 74111

        #4
        Originally posted by Faustvasea97
        I've added url link to image path in stylevar through admincp.
        There are over 400 style variables. We need you to be a little more specific.
        Translations provided by Google.

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

        Comment

        • Danloona
          Senior Member
          • Mar 2015
          • 543
          • 4.2.5

          #5
          Originally posted by Wayne Luke

          There are over 400 style variables. We need you to be a little more specific.
          Apologies.

          I've added images url link to body background

          And my forums becomes transparent.

          A pictures has been attached to post.

          Any ideas how can I fix this bug?

          Cheers.

          Comment

          • Wayne Luke
            vBulletin Technical Support Lead
            • Aug 2000
            • 74111

            #6
            It isn't a bug. This is how CSS works.

            What color values do you have for breadcrumb_background, content_background, and wrapper_background? They should all be #FFFFFF. Best to leave the other options empty.
            Translations provided by Google.

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

            Comment

            • Danloona
              Senior Member
              • Mar 2015
              • 543
              • 4.2.5

              #7
              Thanks Wayne, they all was transparent. I think because if theme which I've started to modify.

              Comment

              • schmid
                New Member
                • Mar 2018
                • 9
                • 5.3.x

                #8
                Hello,
                this is exactly what I need, I need a background picure and the rest transparent, except the right side, they should have a different image for each module.
                What have you done, to get the transparent background?

                Thanks

                Chris

                Comment

                • In Omnibus
                  Senior Member
                  • Apr 2010
                  • 2310

                  #9
                  Originally posted by schmid
                  Hello,
                  this is exactly what I need, I need a background picure and the rest transparent, except the right side, they should have a different image for each module.
                  What have you done, to get the transparent background?

                  Thanks

                  Chris
                  You can add the following to your css_additional.css template:

                  body {
                  background: url("linktoyourimagehere") no-repeat center fixed;
                  background-size: cover;
                  }
                  #content {
                  background-color: rgba(255,255,255,0.8); /* white with 80% transparency (adjust as needed) */
                  }

                  And you can thank Glenn Vergara for the code.

                  Comment

                  Related Topics

                  Collapse

                  Working...