Direction
The theme automatically chooses Right-to-left or Left-to-right based on Blog language.
If you want to explicitly choose the direction irrespective of language chosen in Blog settings, follow these steps:
- Go to Theme Designer.
- Click on Advanced tab.
- From the dropdown list, select Style: Appearance.
- Change the length of Direction to 1px, 2px or 3px in order to use Automatic (language-based), Left-to-Right or Right-to-Left as direction.
Default mode
Light mode is used as default mode. To change it to Dark or System, you can follow these steps:
- Go to Theme Designer.
- Click on Advanced tab.
- From the dropdown list, select Style: Appearance.
- Change the length of Default Mode to 1px, 2px or 3px in order to use Light, Dark or System as default mode.
Theme Schemes
This feature allows users to choose a color from a predefined list of schemes.
Once selected, the website's appearance including the background, text, buttons, and other UI elements - will adapt to the chosen color scheme to provide a consistent and personalized look throughout the site.
This enhances the user experience by allowing visitors to match the website's aesthetic to their preferences or mood. Theme schemes may also support dark and light variants for better readability and accessibility.
This features comes enabled by default, you can configure or disable it through Theme Designer.
- Go to Theme Designer.
- Click on Advanced tab.
- From the dropdown list, select Style: Appearance.
Status Bar color
This feature allows you to customize the color of the browser's status bar, primarily on mobile devices.
By setting a specific color, the status bar blends seamlessly with your website's theme, providing a more immersive and professional appearance.
This is especially useful for Progressive Web Apps (PWAs) and full-screen web experiences where branding consistency matters. The color can be set dynamically based on the active theme or user preferences.
You can choose your preferred color for Status Bar through Theme Designer.
- Go to Theme Designer.
- Click on Advanced tab.
- From the dropdown list, select Style: Status Bar.
- Now choose your custom color in Status Bar color (Light) and Status Bar color (Dark) for Light and Dark mode respectively.
Box Design
This feature gives components a boxed look with shadows and rounded corners, enhancing depth and visual separation across the layout.
This feature comes disabled by default, you can enable it through Theme Designer.
- Go to Theme Designer.
- Click on Advanced tab.
- From the dropdown list, select Style: Appearance.
- Change the length of Box Design to 1px or 2px in order to disable or enable it respectively.
Custom fonts
Fonts are loaded dynamically by theme based on few conditions in order to improve PageSpeed score.
You can either use a web-safe font (built into most browsers) or import a custom font from sources like Google Fonts or other CDNs.
Using link tag
- Go to Google Fonts, select a font, and copy the attribute
href
of provided<link>
tag having attributerel="stylesheet"
as shown below. - Escape the copied url by replacing
&
to&
,<
to<
,to
>
,'
to'
and"
to"
if there exists any.
For example the above url contains&
. Therefore, we need to escape by replacing it to&
as shown. - Through Blogger HTML Editor, find the following code snippet and put the escaped url in one of the marked parts, whichever first is empty.
If you don't want to dynamically load your fonts, skip above steps and put all <link>
tags provided by Google Fonts in-between of following two lines of code through Blogger HTML Editor. Note that you still need to escape the value of href
attribute.
Using CSS
If you can't link fonts using external sources and you have CSS which imports font families, you can replace the marked part with your single line escaped font css, i.e. your css must be in a single line and escaped (replace &
to &
, <
to <
, to
>
, '
to '
and "
to "
).
Font name
If you changed the default font sources, you may need to provide your font family name in order to be used by the document. To do so, you can follow these steps:
- Go to Blogger HTML Editor.
- Find the following code snippet and replace the existing font names with your custom font names.
Custom texts
Blogger provides few texts which automatically get translated based on what language is choosen in Blog Settings. Few of these texts are Show more, Post a comment, Join the conversation, etc. But when using custom texts lets say Close, Appearance, About the Author, etc., it can't be automatically translated and will stay in English unless changed. You may want to modify these texts to your own.
- Go to Blogger HTML Editor.
- Find the following code snippet and replace the
value
attribute with your custom text in respect to what description says.