• How do I hide the widget background color of the header right widget area in custom community theme?

    My website is obviouslyfrugal.com. Currently the header right widget area in the top right corner has a grey background. I would like there to be a white or no background in this area.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Brandon Kraft

    (@kraftbj)

    Code Wrangler

    It looks like the quickest way to change that, and only that, could be to add the following to your /wp-content/theme/custom-community/style.css:

    #header div.widgetarea {
    background-color:transparent !important;
    }

    (you can also put background-color: #fff; for white)

    This assumes that the theme is truly custom (e.g. no automatic updates, etc). If that theme’s instructions ask to put custom CSS someplace else, follow that instruction for location.

    Hope that helps!

    Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Ah, on the refresh, looks like you found it via .ccwidget too.

    Good job.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘hiding widget background color in custom community theme’ is closed to new replies.