Footer background colors -- Dzonia Theme

Discussion in 'General InkThemes Discussion and Feedback' started by ericalston, Jan 16, 2014.

  1. ericalston

    ericalston New Member

    Joined:
    Aug 14, 2013
    Messages:
    14
    Likes Received:
    1
    Location:
    Charlotte, NC
    I am trying to change the footer colors at http://maintenancemattersdps.com and based on other threads I added the following CSS:

    .footer {
    background: #496336;
    }
    .footer-wrapper {
    background-color: #496336;
    }

    How can I change the colors on the right and the color on the bottom where the © is shown?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer_bottom {
    background: red!important;
    min-height: 25px;
    }
    .footer_wrapper {
    background: red;
    }
    .bottom_cornor {
    display: none;
    }
    
    Inplace of "red" put your color code.


    Thanks & Regards
    Gourav Shrivastava
     
  3. ericalston

    ericalston New Member

    Joined:
    Aug 14, 2013
    Messages:
    14
    Likes Received:
    1
    Location:
    Charlotte, NC
    Thanks. This changed the colors, but it took away the rounded corners on the bottom. Can I change something to get the rounded corners at the bottom?
     
  4. Piyush

    Piyush Support Staff

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

    Go to the Appearance -> Theme Options -> Styling Options -> Custom CSS section in your dashboard
    and paste the code given below

    Code:
     .bottom_cornor {
    background: red;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    } 
    in place of

    Code:
     .bottom_cornor {
    display: none;
    }
    
    This will solve your issue.
     
  5. ericalston

    ericalston New Member

    Joined:
    Aug 14, 2013
    Messages:
    14
    Likes Received:
    1
    Location:
    Charlotte, NC
    That worked, thanks!
     
    Piyush likes this.

Share This Page