Change background color of grid

  • Unknown's avatar

    how do I change the white background color of the grid for:

    http://thepicturebar.com/weddings/stanleyrocelyn/

    The blog I need help with is thepicturebar.com.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, I’m not seeing a grid on that page. I see a section with a Password Required Vimeo video. If that is the section you are talking about, then that color is set by Vimeo and we cannot override it with CSS. If that is not the section you are talking about, can you explain a little further? I’m not seeing a “grid” on that page.

  • Unknown's avatar

    I meant the white background of the content area.

    I was able to change the color partially but it doesn’t cover the full width of the content area

  • Unknown's avatar

    if you want to remove white background from your content area so find this code background-color:#FFFFFF in your CSS and check which one is used for content and just replace it with the new one.

  • Unknown's avatar

    I’m seeing a background image now on the stanleyrocelyn page. There is a light colored band behind the breadcrumbs below the featured image. If you wish to change the background color, and possibly the text color on that, add the following CSS.

    .custom-background .entry-breadcrumbs {
        background-color: #f8f8f8;
    }
    .entry-breadcrumbs, .entry-breadcrumbs a {
        color: rgba(0, 0, 0, 0.8);
    }

    The second rule above is an rgb color declaration with an alpha transparency filter – the last number between parenthesis. You can replace that with a standard hex color.

  • The topic ‘Change background color of grid’ is closed to new replies.