- This topic has 1 reply, 2 voices, and was last updated 5 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Change max width of Tagline in site identity’ is closed to new replies.
How can I safely change the maximum width of the Tagline text in the site identity? Right now it word wraps after a few words, and I’d like it to remain a single line of text if possible. Thanks.
The masthead is made up of 3 columns: 1. the logo & tagline – 2. the primary menu – 3. the search/account/cart section
This is the default CSS that determines the width of the 3 columns:
#masthead > .container {
grid-template-columns: minmax(auto,300px) auto auto;
}
You could add Additional CSS such as this:
#masthead > .container {
grid-template-columns: auto auto auto;
}
If you have a lot of menu items in the primary menu you may need to experiment with the widths to get it how you like.