• I’m using a child theme of Buttercream, I’ve added a fixed background but there is a faint outline of the original background colour (biegy yellow outline)..
    Where in the CSS would I be able to change this to a darker shade of green or preferably remove it altogether? I can’t seem to find it anywhere.

    Also, is it posible to remove the borders of the bottom sidebars? I’m only using the middle one for the dog logo. It would look lovelier without the dotted lines.

    Its available HERE

    Thanking you all muchly. This theme is working out excactly how it was intended!!

    Andy

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    I am not sure which outline you mean.
    The one on left of the main background image looks like a part of the image.
    If you mean the one around the main content then it appears that the following rule is making the color:
    (You can change the color here if you want a different border)
    #masthead hgroup {
    border-left-color: #F4EED0;
    border-right-color: #F4EED0;
    }

    If you want to totally remove the border then you must also take care of the following rule also:

    #main, #masthead hgroup {
    border-left: 4px solid #EDE9CE;
    border-right: 4px solid #EDE9CE;
    }

    To remove the borders at the bottom sidebars then change the following:

    #sidebar-1 {
    border-right: 1px dotted #82573F;
    }

    #sidebar-2 {
    border-right: 1px dotted #82573F;
    }

    to

    #sidebar-1 {
    border-right: none;
    }

    #sidebar-2 {
    border-right: none;
    }

    Best to put these styles in your custom css or child theme css file.

    Thread Starter Andy Woggle

    (@andy-woggle)

    Yep. That worked perfectly

    Thanks lots

    A

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Border remains same colour when added fixed background’ is closed to new replies.