• I would like to remove the light grey border around each container on a page. Is there an easy way of doing this? Cheers … needless to say I’m completely clueless when it comes to the coding!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Silkalns

    (@silkalns)

    Add this code to Theme Options – Other – Custom CSS. It will hide borders around post content and widgets. Let me know if there is any other element where borders still appear.

    article, .widget {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    Thread Starter otuhiwai

    (@otuhiwai)

    Perfect, that has worked. There is still a border around the gallery images which would be good to remove. Thanks very much.

    Theme Author Silkalns

    (@silkalns)

    Add this code to the same Custom CSS field I mentioned above.

    .gallery-item img {
        border: 0 !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing grey bounding box from page elements’ is closed to new replies.