Viewing 8 replies - 1 through 8 (of 8 total)
  • Can you clarify which text you’re trying to change? Are you trying to change the color of the text “Conservative Party (Missouri)”?

    Thread Starter samgallo

    (@samgallo)

    I thought I re-clarified the question but must not have. Let me try again. In each widget there is a title bar that shows and describes the widget to the viewer. It has a background color. Where to change?

    If you go to your Dashboard and then to Mantra Settings > Color Settings, there’s many options for changing the color scheme of your site. The setting that you want is “SIDEBAR HEADER BACKGROUND COLOR”. If you click on that setting, a little color wheel should appear which allows you to select the color you’d like, or you can use a site like Colorpicker to get the right color.

    Thread Starter samgallo

    (@samgallo)

    Thanks. My problem was I didn’t know what to call it. Which leads me to this. What do you call the spacer that is sometimes placed between footer widgets. I have one website (WordPress Mantra) that has them and don’t how to get rid of them because I don’t know what they are called.

    Does the site you listed in your original post show the spacer between the footer widgets? If not, can you take a screenshot of this spacer and post it to someplace like Imgur?

    Thread Starter samgallo

    (@samgallo)

    You can see it in real time at: https://www.conservativepartyny.org/

    Look at the footer area. It’s those blue narrow spacers between each widget.

    The issue is with this code:

    #footer-widget-area .widget-title {
    	background: #4682B4 url('https://www.conservativepartyusa.org/home/wp-content/uploads/2012/01/title_bg.jpg') no-repeat;
             -webkit-border-radius: 0px;
             border-radius: 0px;
    }

    What’s happening is that you’re using an image to decorate the widgets header, but the image itself isn’t quite long enough to completely cover the header area and so a little bit of blue peeks out from behind the image. To fix it, you should find that code and change the first line to:

    background: #fff url('https://www.conservativepartyusa.org/home/wp-content/uploads/2012/01/title_bg.jpg') no-repeat;

    Unfortunately, I’m not 100% sure where that code came from, so you may wish to ask whomever set up your website for more information.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Widget header color’ is closed to new replies.