Title Font Size in Widget

Discussion in 'ColorWay WordPress Theme' started by 1stopnonprofitshop, Apr 26, 2016.

  1. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    How do you change the font size of the title in the sidebar widget? I want it a little smaller so it's on one line vs 2.
     

    Attached Files:

  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .sidebar-left h2 {
        font-size: 19px;
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

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

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    What would you add to that code to make it bold? To make it underlined?
     
  4. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    Asked a question right above, but also, if it did drop to 2 lines...how would I center the text...instead of align left?
     

    Attached Files:

  5. priya

    priya Guest

    Hello,

    To make text bold and underline, code is given below...
    Code:
    .sidebar-left h2 {
        font-weight: 800;
        text-decoration: underline;
    }
    For the second issue, code is given below...
    Code:
    .sidebar-left h2 {
        text-align: center;
    }
    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page