Banner font size in Old Pages

HI. We are creating a website in Old Pages. The title of the website in the banner is “Debra Weisenburger Lipetz”. When viewing as a MacBook 13", which we want to use as the default view, the title name wraps around onto 2 lines. We want it on one line in this view. We think we can do this if the font size were smaller. How can we make the font smaller? Thanks, Bob

Not sure what “Old Pages” is? I’m guessing it’s a 3rd party theme.

I would have a look at the Master Styles (along the left sidebar). Manny 3rd party themes have font size settings within the theme’s master styles.

If you can’t find one that works, it can probably be adjusted with some custom CSS. If you need help with the CSS, then it’s best to post a URL to at least a test page. Someone here can usually get you some code pretty quickly.

1 Like

Try this CSS

#pageHeader h1 {
    font-size: 41px;
    line-height: 53px;
}

Change the font size to suit and adjust the line height if you need to.

Rob

2 Likes

Rob, that worked! You’re a prince among us peons!

Peace and Love

Bob

Now is the time to see the sunlight dancing as one with the shadows. ~Rumi


robbeattie

    May 10

Try this CSS

    #pageHeader h1 {
font-size: 41px;
line-height: 53px;
}

Change the font size to suit and adjust the line height if you need to.

Rob

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.