Widget titles

  • Unknown's avatar

    I am interested in changing the font color of my widget titles from the gray I have to the same dark navy blue of my site title. I also put in a widget text box with my social media icons in it, but I think I may want to delete the box around those and just center them above the about me widget box below it. I am not sure but I wanted to see what it looked like that way. any help would be greatly appreciated!! Thanks.

    Mary Ann

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

  • Unknown's avatar
    .widget-title {
      color:#20293F;
    }
    
    #text-2 {
      border:none;
      text-align:center;
    }
  • Unknown's avatar

    Thank you for your help! Is there a way to change the navigation bar titles to all lower case letters and and to the same navy blue font of my widget titles? Thanks so much!!

  • Unknown's avatar

    You can use the second bit to set a different colour for the active/current page if you like:

    .navigation-main a {
      color:#20293F;
      text-transform:lowercase;
    }
    
    .navigation-main li.current_page_item a,
    .navigation-main li.current-menu-item a {
      color:#f00;
    }
  • Unknown's avatar

    Great! changing to lowercase worked, but the font is still the same. Can I get it to match the font of the widget titles?
    Thanks!

  • Unknown's avatar

    Oops, sorry I thought you just meant the colour, not the typeface too. Swap the first rule out for this instead:

    .wf-active .navigation-main a {
      font-family:"Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
      color:#20293F;
      text-transform:lowercase;
    }
  • Unknown's avatar

    Ok tried that but it doesn’t look like the same font of my widget titles. My widget title font is LTC bodoni 175. Thanks.

    Mary Ann

  • Unknown's avatar

    Ah, I think you meant your post titles! If that’s the case just use this list of fonts instead:

    ltc-bodoni-175-1,ltc-bodoni-175-2,Lora,Georgia,"Times New Roman",serif;

  • Unknown's avatar

    It is for my navigation menu. It changed to lowercase but the font is not changing. I tried inputting that starting after font-family: but the font didnt change.
    I typed:

    .wf-active .navigation-main a {
    font-family: “ltc-bodoni-175-1, ltc-bodoni-175-2, Lora, Georgia, “Times
    New Roman” , serif;
    color:20293F;
    text-transform:lowercase;
    }

    What did I do wrong?

    Thanks…Mary Ann

  • Unknown's avatar

    It looks like you have an extra quote just before the name of the first font which is breaking things, try copying this and see if it works:

    .wf-active .navigation-main a {
      font-family:ltc-bodoni-175-1,ltc-bodoni-175-2,Lora,Georgia,"Times New Roman",serif;
      color:#20293F;
      text-transform:lowercase;
    }
  • Unknown's avatar

    Great that worked! Can I get the font size of the navigation menu options a little bigger though? My widget titles are 15px. I also wanted to make my widget titles bold if I can. Thanks so much!!

  • Unknown's avatar

    The code you want is one extra line compared to the above:

    .wf-active .navigation-main a {
      font-family:ltc-bodoni-175-1,ltc-bodoni-175-2,Lora,Georgia,"Times New Roman",serif;
      color:#20293F;
      text-transform:lowercase;
      font-size:20px;
    }

    And for the widget titles based on the example I gave you earlier in the thread:

    .wf-active .widget-title {
      color:#20293F;
      font-weight:bold;
    }

    If there’s anything else you want to change try experimenting yourself in the Customizer and if you can’t figure it out after a couple of minutes and a visit to Google then by all means come back and ask! I bet you’ll surprise yourself though – CSS isn’t as scary as it might seem! :)

  • Unknown's avatar

    Thank you for all your help. I did try a few things but it didn’t work for me. I am going to work on researching a few more things today on the forums and google myself and if I can’t figure them out I will get back to you. Have a great day and thanks again.

  • Unknown's avatar

    If you haven’t seen it before then have a look at this support page, it will show how you to explore the HTML structure and CSS of your theme which is really useful!

  • The topic ‘Widget titles’ is closed to new replies.