Can the page boarder be removed?

Homepage Community Forums Epik Theme Support Can the page boarder be removed?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #9602
    mydogslife
    Customer

      Hi,

      I realise that this is probably easy to do, but being a mere non-coding mortal I was wondering if there is any way to remove the boarder that is automatically added when you create a page? I’ve attached a screen capture just to help – http://mydogslife.co.uk/images/page-boarder-example.png

      Sorry if this has been asked some where else, I’ve looked through the Epik forum but couldn’t seem to find the answer anyway!

      Many thanks in advance,

      Ken

      #9612
      Wes
      Moderator

        What you’re seeing is actually called a “box-shadow” that shows up for the content area of the theme.

        You can remove this in your css by looking around line 2196 (unless you’ve added or modified other code in your css)

        .entry {
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            -webkit-box-shadow: 0 3px 6px rgba(0,0,0, .2);
            background: #fff;
            margin: 0 3px 40px;
            padding: 40px 0 0;
        }

        Remove the following code from above –

            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            -webkit-box-shadow: 0 3px 6px rgba(0,0,0, .2);

        If you’ve made changes to your css code then it may appear on a different line.

        #9617
        mydogslife
        Customer

          Hi Wes,

          Many thanks for getting back to me so quickly, css updated and “box-shadow” removed 🙂

          Happy holidays!

          Regards Ken

          #9623
          Wes
          Moderator

            You’re Welcome!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Can the page boarder be removed?’ is closed to new replies.