How can I change the widget title font using Blaskan theme

  • Unknown's avatar

    Hi there,
    I was hoping someone could help me with the CSS I would need to change the font, colour and size of the widget titles, in my sidebar. I am using the blaskan theme.

    Any help would be great,
    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To change the color and the size, add this and change the values:

    .widget .title {
    color: #456789;
    font-size: 13px;
    }

    What font would you like to use?

  • Unknown's avatar

    Hi, thanks for the code, although I did put it in and didn’t see any change as yet.
    I was hoping to use the same font as the dates in each of my posts, but Im not sure what that is, otherwise I want to use the same as my nav bar, however I did try adding this font by adding the following CSS, but it stil doesn’t seem to change anything:

    .widget .title {
    color: #000000;
    font-size: 13px;
    font-family: “proxima-nova-n4”, “proxima-nova”, sans-serif;
    font-weight: 600;
    }

  • Unknown's avatar

    The widget titles already have the same font family as the dates (Helvetica Neue), only different color, size and weight. If you want them to look exactly like the dates, paste this:

    .widget .title {
    color: #888888;
    font-size: 100%;
    font-weight: 300;
    }
  • The topic ‘How can I change the widget title font using Blaskan theme’ is closed to new replies.