Left Sidebar Title Size

Discussion in 'Squirrel WordPress Theme' started by 1stopnonprofitshop, May 14, 2016.

  1. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    How do I make the titles in the left sidebar larger so they stand out more?
     

    Attached Files:

  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please paste the code given below in Custom CSS filed of your dashboard.
    Code:
    .sidebar h2 {
        font-size: 35px;
    }
    .sidebar p {
        font-size: 18px;
    }
    .give-btn {
        font-size: 20px;
    }
    Chnage the numeric value as per the requirement..

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    What are each of these codes controlling? Also, how do I center the text and have a gap between each widget?
     
  4. priya

    priya Guest

    Hi,

    All the given codes are just to increase font-size of the text..

    First code is for the heading of the widget..

    Second code is for the para of your widget, like-

    And the last code is for the button..

    Regarding your last issue,

    Code is given below..
    Code:
    .sidebar {
        text-align: center;
    }
    form[id*=give-form] .give-donation-amount {
        margin: 0 0 15px 37px;
    }
    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  5. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    The padding didn't change...and I'd like padding between each of the left sidebar widgets...not just the donate button widget.
     
  6. priya

    priya Guest

    Hi,

    Below are the codes for that...
    Code:
    form[id*=give-form] .give-donation-amount {
        padding-left: 42px;
    }
    .sidebar ul {
        padding-left: 10px;
    }
    .sidebar h2 {
        padding-left: 5px;
    }
    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page