Shortcode help

by 7 replies
8
I'm trying to change the background color and footer color
of this site... www.emunlimited.com

In the Custom CSS area of this theme...I put this
code

<body bgcolor="#">

But nothing happened...

What am I missing here?
#programming #shortcode
  • More then likely your the theme is already wrapping the style tags, so enter css like so:

    Code:
    body {
    background-color: #ffcc99;
    }
    #footer_bg {
    background: url(images/white_arrow.png) no-repeat 50% -4px #f2f2f2;
    }
    #footernav_bg {
    background-color: #1c1c1c;
    }
    Of course, change the colors to what you want.
    I put in 2 different footer bg's because your footer is split into 2 sections, top and bottom nav area.
    • [ 1 ] Thanks
  • UPDATE: I just added it to the footer portion of a side bar widget...and it changed just about the whole page a different color.

    What if I wanted to change the portion of the site that is black and gray???

    Thanks in advance!
  • That last post was before you posted David...so it makes sense...

    There is a nav footer and a background footer...so change both of those in addition to the body.

    SHEESH....thanks for the help!

    BEST

    Brik
  • You click the "post reply" about 2 seconds before I did
  • What are these two items controlling?

    (images/white_arrow.png)


    no-repeat 50% -4px
    • [1] reply
    • That white arrow is at the top of the footer.
      You can remove it if you want.
      Code:
      #footer_bg {
      background: #f2f2f2;
      }
  • For future changes and reference:

    On your webpage, right click and "inspect element" or similar depending on what your browser is.
    You can view the source and narrow down what you need to change for css.
    If using something like firebug (in firefox) or the Chrome developer tools, you can actually make the changes in the browser to see what it looks like. Then copy the css change and put it in your theme css box, sorta like what I did to give you that css block.
    • [ 1 ] Thanks

Next Topics on Trending Feed