borders in Photographer theme

  • Hi, I’d like to remove some of the borders in the Organic “Photographer” theme. I want to remove the gray box around my home page content (xyzena.com). I’ve tried:

    .page-id-965 .post, div.page {
    border: 0px #000000!important;
    }

    .page-id-965 .post {
    border:0!important;
    }

    body.home #content {
    border:0;

    }

    body.home .post {
    border:0;
    }

    …and so on, but can’t figure it out! I want to wind up with a totally white background and no border separating post / page content from the background.

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

  • Hey.

    The grey border effect is a result of the box-shadow property being called in the CSS.

    Inserting the following CSS code into your Custom CSS Editor should get rid of this effect across all browsers for you:

    .container{
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0); }
  • Bingo! Thanks for the help.

  • The topic ‘borders in Photographer theme’ is closed to new replies.