• Resolved cc4789

    (@cc4789)


    I am using Vigilance Pro.

    I would like the sidebar widget titles to have the same font as the post titles. How can I make this change?

Viewing 11 replies - 1 through 11 (of 11 total)
  • esmi

    (@esmi)

    There are thousands of WordPress themes – which means that many people won’t be familiar with your particular theme. So a link to your site where people can see the theme might result in more responses.

    Thread Starter cc4789

    (@cc4789)

    My apologies.

    My site is http://www.red94.net.

    I want the widget titles on there to have the same font as where it says ‘The Latest’ on the sidebar on http://www.red94.net/test

    (that is from a widget called Visual Recent posts.)

    If that’s not possible, at the least I would just like to change the widget titles to the same font as the post titles.

    esmi

    (@esmi)

    Try adding:

    h2.widgettitle {font-family:Georgia,"Times New Roman",Times,serif;)

    to the bottom of your theme’s stylesheet.

    Thread Starter cc4789

    (@cc4789)

    could you do something to make it bold, please?

    Try this..

    h2.widgettitle {
    	font-family: Georgia,"Times New Roman",Times,serif;
    	font-weight: bold;
    }

    Thread Starter cc4789

    (@cc4789)

    beautiful. thank you so much.

    Thread Starter cc4789

    (@cc4789)

    it’s still slightly different however than from the link i provided. if possible, i would like it to have that exact same font. any ideas?

    That’s because there’s a style in your theme’s master.css setting the font.

    Find this..

    h2.widgettitle {
      padding: 25px 0 3px 0;
      font-size: 1.4em;
      font-weight: normal;
      text-transform: uppercase;
      letter-spacing: 1.2pt;
      font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans", Verdana, Arial, sans-serif;
      border-bottom: 1px solid #eee;
    }

    And update it to…

    h2.widgettitle {
      padding: 25px 0 3px 0;
      font-size: 1.4em;
      font-weight: normal;
      text-transform: uppercase;
      letter-spacing: 1.2pt;
      font-family: Georgia,"Times New Roman",Times,serif;
      font-weight: bold;
      border-bottom: 1px solid #eee;
    }

    It’s in this file here.
    red94.net/test/wp-content/themes/vigilance/stylesheets/master.css

    Thread Starter cc4789

    (@cc4789)

    thanks, let me try that now.

    Thread Starter cc4789

    (@cc4789)

    awesome, it fixed it – thanks!

    You’re welcome.. 🙂

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘how do you style sidebar widget titles?’ is closed to new replies.