Color Padding

Discussion in 'Squirrel WordPress Theme' started by 1stopnonprofitshop, Oct 23, 2016.

  1. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    I haven't been able to get this issue solved...how do I add the color padding below these sections so it looks like it does on the top and doesn't look like it's cut off abruptly. Also, how do I add different background colors to the "Who We Are" and "How to Help" sections? I want a different color in each. I would also like the little extra padding on these as well.

    theme2.1stopnonprofitshop.com
     

    Attached Files:

  2. nitin

    nitin Guest

    Hi,

    For color padding you need to add the code written below to the custom CSS in theme option panel.

    Code:
    .feature-content .feature-item {
        padding-bottom: 20px;
    }
    You can add background color by adding following code to the Custom CSS in theme option panel
    Here, I've mentioned the color as grey for both the sections 'Who We Are' & 'How To Help'.
    You can change it by replacing grey with your desired color name or respective hexadecimal value for the color.

    Code:
    .text-featute .text-featute-one{
        background: grey;
        padding: 20px;
    }
    .text-featute .text-featute-two {
        background: grey;
        padding: 20px;
    }
    Hope this will help you.

    Thanks & Regards
    Nitin
    InkThemes.com
     
  3. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    Those codes worked perfect! The only issue I'm still having is the color padding under the "More About Us" section. I want a little more of the green below that section so it doesn't look cut off.

    theme2.1stopnonprofitshop.com
     
  4. nitin

    nitin Guest

    Hi,

    To add color padding, use the CSS given below:-
    Code:
    .index-fullwidth {
        height: 310px !important;
    }
    
    Hope this helps...!

    Thanks & Regards!
    Nitin
    InkThemes.com
     

Share This Page