body_wrapper text color

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MrPitBull
    Member
    • Nov 2009
    • 35
    • 3.7.x

    [Forum] body_wrapper text color

    I changed my body_wrapper background color and now the text that is in the body wrapper is barely visible. I tried to change the text color is stylevar but it changes text color globally. How can I change the text color is the body_wrapper only?
  • Amaury
    Senior Member
    • Mar 2012
    • 1807
    • 4.2.X

    #2
    If you only want to change it in that area, you'll need to add custom CSS to the additional.css template.
    Former vBulletin user

    Comment

    • MrPitBull
      Member
      • Nov 2009
      • 35
      • 3.7.x

      #3
      Originally posted by Amaury25
      If you only want to change it in that area, you'll need to add custom CSS to the additional.css template.
      Thanks again Amaury25. I am hoping that someone knows the code for that.

      Comment

      • Amaury
        Senior Member
        • Mar 2012
        • 1807
        • 4.2.X

        #4
        Try this:

        Code:
        #pagetitle .description {
            color: white;
        }
        Former vBulletin user

        Comment

        • MrPitBull
          Member
          • Nov 2009
          • 35
          • 3.7.x

          #5
          Originally posted by Amaury25
          Try this:

          Code:
          #pagetitle .description {
              color: white;
          }

          Comment

          • Amaury
            Senior Member
            • Mar 2012
            • 1807
            • 4.2.X

            #6
            Originally posted by MrPitBull

            What color do you want the links there?

            For the text, try this:

            Code:
            body {
                color: white;
            }
            Former vBulletin user

            Comment

            • MrPitBull
              Member
              • Nov 2009
              • 35
              • 3.7.x

              #7

              Comment

              • Amaury
                Senior Member
                • Mar 2012
                • 1807
                • 4.2.X

                #8
                Originally posted by MrPitBull
                Yes, I know.

                Take a look at my previous response. What color would you like those links?
                Former vBulletin user

                Comment

                • MrPitBull
                  Member
                  • Nov 2009
                  • 35
                  • 3.7.x

                  #9
                  I didn't understand that. I suppose White would be just fine. Once I have the code in place, I think I can fool around with the colors. Thanks a bunch!

                  Comment

                  • Amaury
                    Senior Member
                    • Mar 2012
                    • 1807
                    • 4.2.X

                    #10
                    Originally posted by MrPitBull
                    I didn't understand that. I suppose White would be just fine. Once I have the code in place, I think I can fool around with the colors. Thanks a bunch!
                    Try these:

                    Code:
                    body a {
                        color: white;
                    }
                    Code:
                    body a hover {
                        color: white;
                    }
                    Former vBulletin user

                    Comment

                    • MrPitBull
                      Member
                      • Nov 2009
                      • 35
                      • 3.7.x

                      #11
                      I have to play around with the color because the white is causing all the titles in the content container to disappear. All of the sudden it dawns on me to supply a link so you can see. I have it in red for the time being, although I don't like the red. http://forum.mrpitbull.com

                      After trying it for a while I realize that there has to be a better solution.
                      Last edited by MrPitBull; Wed 22 Aug '12, 8:37pm.

                      Comment

                      Related Topics

                      Collapse

                      Working...