Customize your Blog Title in our New Magazine Layout
April 07, 2020
With the shiny new Magazine Layout, you can share a new look for your blog. The Custom CSS feature allows you to customize the design to fit your brand. (Custom CSS is available with the Unlimited plan. Click here to check your plan.)
The Magazine Layout is currently available in beta. It's easy to join the beta team to take advantage of new features. Learn more.
Now, we are going to share some CSS tips for changing the formatting of the Blog Title.
Change Blog Title Size
At Design > Custom CSS, you can add the below code to the text field:
.blog-header-logo { font-size: 40px; }
Adjust 40px to the preferred size for the title and click Save Changes.
Change Blog Title Font
.blog-header-logo { font-family: Arial, Helvetica, sans-serif; }
Change Blog Title Color
.blog-header-logo { color: #800000 !important; }
(The !important code in this CSS is...important.)
Make Blog Title Bold and Bolder
.blog-header-logo { font-weight: bold; }
Additional options: bolder, lighter, normal
What other tweaks do wish to try out with the new Magazine Layout? Let us know in the comments, and we'll include the CSS in another blog post.
Comments