Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #78959
    Joachim
    Member

    Hello,

    The tagline font-size is way too small.
    I tried to change the font-size using Custom CSS but nothing happened.

    I followed advice from another post and added this code:

    @media screen and (min-width: 961px) {	
        #site-description {
            font-size: 24px;
        }
    }

    Can anyone tell me how to change the font-size for the tagline?

    #78968
    Sakin
    Keymaster

    @Joachim: Try changing font in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 768px) {
        .site-description { font-size: 13px; }
    }
    #79014
    Joachim
    Member

    @Sakin,
    I don´t understand: in what “following css” do you suggest I change this?
    Just adding this to Custom CSS Options didn´t change a thing.
    The site I am talking about is http://www.learning-and-growth.biz.

    What am I doing wrong?

    #79018
    Sakin
    Keymaster

    @Joachim: Sorry there is issue with the css I gave you. It should be min-width instead with max-width. So, replace your current css:

    @media screen and (max-width: 768px) {
        .site-description { font-size: 48px; }
    }

    with the following css:

    @media screen and (min-width: 768px) {
        .site-description { font-size: 48px; }
    }
    #79982
    Joachim
    Member

    Thanks, that works.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Tagline font size in Catch Base Pro’ is closed to new replies.