Delete Borders in the Twenty-Twelve Theme

  • Unknown's avatar

    I found this thread with the code to remove the borders from within the twenty-twelve theme: https://en.forums.wordpress.com/topic/delete-borders-in-the-twenty-twelve-theme?replies=6

    It was very helpful but it left out one border that I want removed as well. I am looking to remove the small gray shadow border that is around the blog container. I have already added the transparency but the thin gray shadow border is still present. I have tried several statements but can’t seem to find the right combination. Can you please assist me?

    Thank You for Your Help

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

  • Unknown's avatar

    I am looking to remove the small gray shadow border that is around the blog container.

    In the theme CSS, I found there is a box-shadow on the “.site” element, and you can remove it with this:

    body .site {
    	box-shadow: none;
    }

    However, with your current custom CSS, I’m having a hard time telling if that’s what you really want to remove.

    I also see that you’ve setup this background image on the body element:

    That image looks like it has some shadows possibly built in to the image itself. If those are the shadows you are referring to, you may need to edit the image directly to change the way it looks.

  • The topic ‘Delete Borders in the Twenty-Twelve Theme’ is closed to new replies.