container "box shadow" question

Discussion in 'ColorWay WordPress Theme' started by chauncey99, Jan 9, 2014.

  1. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    Hello, I would like for the container box shadow to continue down and around the footer instead of stopping at the bottom of the main content.

    If I use this code:


    Code:
    .container {
    box-shadow: none ! important;
    }

    the box shadow disappears completely.

    Instead, I would prefer for the box shadow to continue around the footer, instead of making a line across the bottom of the main content.

    Is this possible?

    If not, is it possible to eliminate the bottom of the box shadow (top and sides of box shadow remain)?

    Thank you for your help.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    Please see attached screen shot. colorway footer screen shot.jpg
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer-container {
    box-shadow: inset 0 0 1px #000000;
    }
    .footer-navi {
    box-shadow: inset 0 0 1px #000000;
    } 
    This will solve your issue.
     

Share This Page