• Hi. I was just wondering if there was a way I could remove the borders that surround the header image & side bar etc…

    I suppose thinking about it I could delve i & change colour to white, that would do it.

    But you have a simple code to input in my child theme then fantastic.

    Thankyou in advance,
    Richard

Viewing 1 replies (of 1 total)
  • Theme Author zeaks

    (@zeaks)

    To remove the border around the header image add the following to your child theme

    .header-image {
        border: none;
        padding: 0;
    }

    The borders around the sidebar items are added by Bootstrap. You can remove them by removing the panel-default class in the widget section of functions. Alternatively you should be able to use CSS to remove the border, this should do it.

    #secondary .panel-default,
    #secondary .panel {
         border: none;
         box-shadow: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Grey borders’ is closed to new replies.