Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #88101
    susannagable
    Member

    Hi and thank you for a great theme! I am using relevanssi to make changes to the fonts. It has worked great for all titles except title 2. How do you make it non-italics and how do you make it bigger? Many thanks!

    #88137
    Mahesh
    Participant

    @susannagable: Thank you for your appreciation. Please post in your site url.

    Regards,
    Mahesh

    #88149
    susannagable
    Member

    Hi Mahesh! It is http://countrygrowth.com/

    It is the red text right under “COUNTRY GROWTH” that I am trying to change. Right now I have the font that look the least like it was in italics and was slightly bigger than the other. However, I would like to use another font and then make it non-italics and bigger.

    Many thanks!

    #88155
    Mahesh
    Participant

    @susannagable: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .site-description {
        font-family: Arial;
        font-size: 14px;
    }

    Regards,
    Mahesh

    #88159
    susannagable
    Member

    I tried that (just using Cantarell instead of Arial), but I have the same problem. No ability to change to non-itallics or make it bigger.

    #88165
    susannagable
    Member

    Is the idea to set it back Heading2 to “default”, and if I want it bigger I use the same code but change 14px to a higher number? If so, is there a line in the code I can add to make it non-italic?

    #88169
    Mahesh
    Participant

    @susannagable: You’ve not put the .site-description in the CSS, all of the code is required or it won’t work. Please use the following intead.

    .site-description {
        font-family: Cantarell;
        font-size: 20px;
        font-style: normal;
    }

    Note: You can increase or decrease the font-size as per your requirement.
    Hope this helps.

    Regards,
    Mahesh

    #88170
    susannagable
    Member

    OK. But where can I access the Cantarell, normal, 20px and apply it to Heading 2? I try through “Typography” in the customize section – but neither putting it on default or Cantarell works. I have installed Relevanssi if that makes a difference.

    #88173
    Mahesh
    Participant

    @susannagable: You have again put the portion of the CSS not the whole and that is why its not working. You have put the code (This is not correct):

    {
        font-family: Cantarell;
        font-size: 20px;
        font-style: normal;
    }

    Please use the following CSS instead:

    .site-description {
        font-family: Cantarell;
        font-size: 20px;
        font-style: normal;
    }

    Regards,
    Mahesh

    #88174
    susannagable
    Member

    Oh, so sorry! Got it. Thank you so very much! This will work great.

    #88236
    susannagable
    Member

    Hi Mahesh,
    Is there also an easy way to decrease the space between the site description and the featured box?
    Susanna
    – Please, if there is any link where I can give feedback on your super helpful support, let me know!

    #88240
    Mahesh
    Participant

    @susannagable: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #site-branding .site-description {
        padding-bottom: 0;
    }

    Let me know if this helps.
    Thank you very much and we really appreciate your feedback.
    Please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/clean-box?rate=5#postform

    Regards,
    Mahesh

    #88241
    susannagable
    Member

    That did the trick! Thank you again!

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Change Title 2’ is closed to new replies.