Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3371989
Font for my menu is not changing
Closed

Comments

  •  11
    LillaGreen started the conversation

    There is a bug for changing the font for my menu on the website. Doesn't matter what I do, it stays the same... I hope you can help me with that

  •  2,485
    PenciDesign replied

    Hi,

    1. Please send me the screenshot of the menu configuration,

    2. After changing the font style, please clear all the Litespeed cache and check again.

    Regards,
    PenciDesign.


  •  11
    LillaGreen replied

    I also have issues with changing the fonts for the titles and main text.. Cache is cleared

    So I cannot change the fonts.. Also, how can I download font and use it when it is not in the customizer? for example I want to use Bebas Neue for my Menu and Titels

    9041756563.png
  •  2,485
    PenciDesign replied

    Hi,

    If you want to use the custom font, you should upload the custom font files by going to the dashboard → Soledad → Custom Fonts.

    Your main menu already displays as the Roboto Condensed font, please check again: https://imgur.com/a/NUg0U4O

    Regards,
    PenciDesign.


  •  11
    LillaGreen replied

    Thank you for your reply! How can I change the font for Mega Menu, Top Bar Menu? And also how do I defferenciate the fonts for the different H1, H2, H3.. Thank you!

  •  2,485
    PenciDesign replied

    Hi,

    1. The current version of  Soledad doesn't support changing the font for each HTML Heading tag, we'll add this option in the future theme update,

    2. You can only change the font size for the mega menu at Appearance → Customize → Logo & Header → Categories Mega Menus. If you want to customize the font size/style, ... please consider building the header with our Penci Header Builder: 


    Regards,
    PenciDesign.


  •  11
    LillaGreen replied

    I saw a code somewhere on your site for changing the H1, 2,3 in the CSS .. etc. but cannot find it now. Can you please share It with me?

    When will be  the future theme update for changing the fonts? Thank you

    Another question - when I build something with elementor, does Elementro overtake the main settings from the theme for the font type?

    How can I change the text font for the text on the blog post and everything that is not H (title) - thank you.

  •  2,485
    PenciDesign replied

    Hi,

    1. You can change the font size by going to Appearance → Customize → General → Typography and Customize → Single Posts → Font Sizes,

    2. Elementor will overtake the main settings from the theme for the font type.

    Regards,
    PenciDesign.


  •  11
    LillaGreen replied

    I saw a code somewhere on your site for changing the H1, 2,3 in the CSS .. etc. but cannot find it now. Can you please share It with me?

  •  2,485
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    h1 {
        font-family: 'Roboto';
        font-size: 26px;
    }
    h2 {
        font-family: 'Roboto';
        font-size: 22px;
    }
    h3 {
        font-family: 'Roboto';
        font-size: 20px;
    }
    h4 {
        font-family: 'Roboto';
        font-size: 26px;
    }
    h5 {
        font-family: 'Roboto';
        font-size: 14px;
    }
    h6 {
        font-family: 'Roboto';
        font-size: 12px;
    }

    Regards,
    PenciDesign.



  •  11
    LillaGreen replied

    I was meaning not the font sizes but the font style.. Thank you

  •  2,485
    PenciDesign replied

    Hi,

    You can use this CSS:

    h1 {
        font-style: italic;
    }
    h2 {
        font-style: normal;
    }
    h3 {
       font-style: normal;
    }
    h4 {
        font-style: normal;
    }
    h5 {
        font-style: normal;
    }
    h6 {
        font-style: normal;
    }

    Regards,
    PenciDesign.


  •  11
    LillaGreen replied

    Thank you very much!!