• Resolved stonecze

    (@stonecze)


    Hello,
    I am using your Pen theme and I would like to change the colour of the Widget Title, but I did not find it in a colour settings. How can I change it?

    And also, it is possible to install some new font to you theme? For example I wanted to change the font for Post titles and widgets to a new font which is not installed so far..

    thank you

    • This topic was modified 5 years ago by stonecze.
Viewing 1 replies (of 1 total)
  • Theme Author htmlpie

    (@htmlpie)

    Hi there,

    You can do that with some CSS, e.g.

    #dm_left .widget-area .widget-title {
      background: #fff;
      color: #000;
    }

    This will change all of them in the Left Sidebar, if you want to be more specific you need to find the ID of the element with .widget class and add something like this:

    #WIDGET_ID .widget-title {
      background: #fff;
      color: #000;
    }

    As for fonts, all the Google Fonts are available. If you need to add a custom font you need some more CSS, e.g.

    @font-face {
      font-family: 'Custom Font';
      src: local( 'Custom Font' ),
        url('/path/to/your/font/custom_font.woff2') format('woff2'),
        url('/path/to/your/font/custom_font.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }

    Hope it helps!

    • This reply was modified 5 years ago by htmlpie.
Viewing 1 replies (of 1 total)
  • The topic ‘Widget Title colour change’ is closed to new replies.