Top Border Shadow Missing

Homepage Community Forums Epik Theme Support Top Border Shadow Missing

  • This topic has 7 replies, 2 voices, and was last updated 11 years ago by Wes.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #4220
    TrishJ
    Customer

      Hi there,

      I seem to be missing a top page border or shadow on my pages and blog posts

      See page聽http://www.womenofinfluence.com/blog

      Thanks for your help.

      Love, love LOVE this theme by the way. It’s one of the easiest themes I’ve worked with for a LONG time. And I love the flexibility of using custom code rather than using featured post and page widgets to add elements to the site. 馃檪

      Trish

      #4232
      Wes
      Moderator

        It’s actually a box shadow, and the top and bottom were designed to show both at the same time but more in the direction of the bottom. To fix this you would have to move the shadow back up so it can be even. To do this look around line 728 in your css file or search for this –

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

        Then replace that code with this code –

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

        The code was originally designed for the gray background, but since you changed it to white you would need to do the above suggestion to get it to look right.

        Hope that helps, and I hope I didn’t make it sound too confusing.

        #4233
        Wes
        Moderator

          Great Job on the site! I plan to have a showcase added soon if you want in.

          #4241
          TrishJ
          Customer

            Makes perfect sense Wes and in fact, I prefer the darker background on the pages, which brings me to another challenge … I really like the white in the area where I have my photo and text “Bringing God’s Purpose ….”

            If I change the body color to #f5f5f5, it changes that section too. Is there any way, I can change just that section to make the background white?

            I have some tidying up on the site to do and my designer is busy right now, hence the “terrible” Women of Influence TV image! I can build, but I can’t design! But yes, I would absolutely love the site to be showcased. I just love the flexibility of this theme!

            Thanks Wes.

            #4242
            TrishJ
            Customer

              BTW – what forum software are you using here? It’s so easy to use and clean.

              #4253
              Wes
              Moderator

                If you change the body it shouldn’t affect the posts. I can see where you added #f5f5f5 to the body, but your posts backgrounds are still white.

                I’m using the bbpress plugin for WordPress – http://wordpress.org/extend/plugins/bbpress/

                #4263
                TrishJ
                Customer

                  Actually Wes, my developer fixed it for me. All sorted now thanks.

                  #4269
                  Wes
                  Moderator

                    You’re Welcome

                  Viewing 8 posts - 1 through 8 (of 8 total)
                  • The topic ‘Top Border Shadow Missing’ is closed to new replies.