How can I increase size of site tagline?

How can I increase the size of the site tagline here https://www.evernote.com/shard/s373/u/0/sh/31b973b0-1bf1-4e7c-82f3-10d8fcae5924/8aede4b827ab1a0a6484fc769d32c00f

Hello @sanachoudary,

Thanks for asking. :slight_smile:

Please add following CSS under X > Theme Options > CSS to increase the font size of tagline:

.tagline {
    font-size: 150%;
    margin-top: 4%;
}

If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.

I recommend you to watch following video that will help you to get started with CSS.

https://www.youtube.com/watch?v=MFR4WXiLzpc

Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.

https://developers.google.com/web/tools/chrome-devtools/css/

https://developers.google.com/web/tools/chrome-devtools/

https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s

Thanks.

1 Like

Thanks that worked. But in the mobile view the tagline now seems bigger that the website name in header as you can see here: https://www.evernote.com/shard/s373/u/0/sh/bab761dd-e04b-46be-9c52-3ffa8fd39f5b/cf4419126317d5697f35921fd2ab06db

How can I fix this?

Hi There,

Please add this CSS to your X-> Theme Option -> Global CSS

@media (max-width: 979px) {
.tagline {
    font-size: 80%;
    margin-top: 2%;
}
}

Hope this helps!

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