• Resolved Bernie Mooney

    (@eatenbybears)


    I’m using the fBiz theme and I’ve been trying to figure out where to change the font size in the site title and tagline. I’ve looking through the CSS but I can’t figure out where to change it.

    Any help or ideas would be greatly appreciated.

    Thanks,

    Bernie

Viewing 7 replies - 1 through 7 (of 7 total)
  • Please add a link to your site. It makes it easier to offer suggestions if we can examine the site. Also, you don’t want to edit the theme’s style.css file directly. If the theme gets updated because of feature enhancements, bug fixes, or security patches, or if the theme has to be updated because of a change to the WordPress core, then your changes will be lost. Instead, either create a child theme or use a CSS plugin like Jetpack or Custom CSS Manager.

    Thread Starter Bernie Mooney

    (@eatenbybears)

    Oops, forgot the link.

    https://callanandbyrnes.com/wp/

    This for another thread but, I’ve been trying to install Jetpack but every time I go to activate I get an error message. I tried manually installing via FTP as well and no go that way either. WP version 4.1.1

    Thanks,

    B.

    Try the Custom CSS Manager or Simple Custom CSS.

    In any event, you want to add these two rules:

    /* Site title */
    #header-logo h1 {
       font-size: 16px;
    }
    /* Tag line (phone number) */
    #header-logo strong {
       font-size: 12x;
    }

    The values listed above are the current values. Change them to whatever size you like.

    Thread Starter Bernie Mooney

    (@eatenbybears)

    Thank you! I’ll give it a try.

    Thread Starter Bernie Mooney

    (@eatenbybears)

    So, the code for the title worked but not the tagline. No problem. I just moved the phone number up.

    I’m assuming that there is a size limit problem that limits the size of the tagline font.

    https://callanandbyrnes.com/wp/

    Thanks again.

    B.

    The tagline rule didn’t work because you left the p off the unit of measure, i.e., it should be 30px and not 30x. CSS rules are pretty strict with regards to syntax.

    Thread Starter Bernie Mooney

    (@eatenbybears)

    Oh geez, I hate it when I miss that kind of thing. It was late, thanks. It works.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Change font size in tagline’ is closed to new replies.