Melaka – Documentation
Theme version:
1.1.9 — 25 May 2022
Changelog
Theme Editing & Tools
Edit the theme files mentioned here with a code editor. I recommend Visual Studio Code, Sublime Text, or Atom. Don’t use TextEdit on Mac.
Once you finish, zip the theme files, and upload the final zip file to your Ghost website.
If editing the routes.yaml
file, make sure to upload it after every change you make.
Watch the following short video tutorial about theme editing.
If you are looking for Ghost hosting, I recommend Ghost(Pro).
Table of Contents
- Theme Installation
- Upload the routes.yaml File (⚑ Required)
- Members / Subscriptions
- Dark Mode
- Navigation
- Search
- Pages
- Comments
- Home Page Posts by Tag
- Posts Per Page
- Related Posts
- Google Analytics
- Update Favicon
- Responsive Tables
- Social Sharing Icons
- Footer Social Media Icons
- Languages
- Syntax Highlighting
- Theme Deploy with GitHub Actions
- Code Injection
- Changing Colors with CSS Variables
- Customize Images Height
- Customize Logo Size
- Footer Copyright
- AMP
- Theme Development
- Theme Update
Theme Installation
The first step is to unzip the downloaded package by double-clicking it on Mac or by right-clicking and selecting “Extract All” in Windows.
Inside the new folder melaka, you will find the melaka.zip theme file and an online documentation file.
Follow these steps to upload the theme to your website:
- Log in to your Ghost website admin (example.com/ghost).
- Click the settings icon ( ) at the bottom of the left-hand side.
- Go to Design > Change theme.
- Click Upload theme and select the melaka.zip theme file.
- Once uploaded, click Activate now to activate Melaka.
Upload the routes.yaml File (⚑ Required)
To upload the file, follow these steps:
- Unzip the melaka.zip theme file.
- In your Ghost admin, click the settings icon ( ) at the bottom of the left-hand side.
- Go to the Labs.
- Scroll down to the Routes section and click the Upload routes YAML button.
- Select and upload the
routes.yaml
file inside the theme folder.

Note: upload routes.yaml after uploading the theme zip
There will already be a default routes.yaml
file uploaded to Ghost. You need to upload your theme’s routes.yaml
to override the default.
Upload the routes.yaml
file separately after uploading your theme zip file.
Members / Subscriptions
Make sure to Upload the routes.yaml file.
Melaka has different interface elements for membership feature.
- Login In and Subscribe buttons in the header
- Footer subscription form
- A post subscription form
- If the post is set to Members Only, a Call to Action section on the Post page to encourage visitors to subscribe
Remove ‘Log In’ and ‘Subscribe’ from Header
Add the following CSS code into the Ghost admin Code Injection Site Header.
<style>
.c-header .is-membership { display: none; }
</style>
Click Save. That’s all.
This will also remove the Account link, visible if logged in.
If the visitor is already logged in, all the forms will be hidden automatically.
Remove Ghost Portal / The Bottom Right Button
This is the Ghost Portal button, and you can disable it from the Ghost admin. More information at Portal Look and feel.

Membership Troubleshooting Tips
If for any reason the subscribe form does not work, or there is an error message, the following tips might help:
First, make sure you run the latest version of Ghost.
If you are self-hosting your website, make sure to set up the mail config. After doing that, restart your Ghost server.
The website config URL should match the URL used to access the website, as described in the Ghost docs.
Enter the URL that is used to access your publication. If using a subpath, enter the full path, https://example.com/blog/
. If using SSL, always enter the URL with https://
..
If you still have an issue and using Ghost Pro, please reach out to the Ghost team. If you are using any self-hosting provider, please reach out to them for help.
There is nothing to do from the theme side. Also, you can try the original theme demo to double-check that everything is working fine.
For more information about Members, connecting Stripe, and setting the package price, check the official Ghost documentation.
Dark Mode
The dark mode is automatically activated based on the Operating System mode. Also, the visitor can switch between dark and light mode from the header button.
Disable Dark Mode
To disable Dark Mode, do the following steps.
- Make sure that you run the Theme Development mode.
- After you run gulp, open the
assets/sass/settings/__all.scss
file and remove line8
(@import 'colors-dark';
) - Remove the Header Dark Mode Switch Button
Disable Light Mode
To disable the Light Mode and make Dark Mode the default, do the following steps.
- Make sure that you run the Theme Development mode.
- After you run gulp, open the
assets/sass/settings/__all.scss
file and remove line7
(@import 'colors';
) - Open the
assets/sass/settings/_colors-dark.scss
file and replace the file content with the following code.
:root {
--color-brand: #51bbf6;
--color-white: #FFFFFF;
--color-dark: #010101;
--color-text: #FFFFFF;
--color-gray: #E5EFF5;
--color-error: #ED5F74;
--color-success: #1BA672;
--color-border: #383B40;
--color-border-dark: #383B40;
--bg-color: #1F2023;
--bg-gray: #27292D;
--bg-white: var(--color-white);
--bg-card: #27292D;
}
$light-mode: true !default;
$dark-mode: false !default;
Remove the Header Dark Mode Switch Button
If you want to remove the header dark mode switch button. Open the partials/header.hbs
file and remove lines from 36
to 41
.
Add Different Logo Images for Light and Dark Modes
➊ Add the Logo Files to the Theme
In your theme, add two different logo files inside the /assets
folder, one for light mode and the other for the dark mode. Please name each file as follows:
light-logo.png
to be visible for light mode.dark-logo.png
to be visible for dark mode.
➋ Change header.hbs file
Open the partials/header.hbs
theme file and replace lines from 10
to 16
with the following code snippet.
<a href='{{ @site.url }}' class='c-logo'>
<span class='u-hidden-visually'>{{ @site.title }}</span>
</a>
➌ Add Custom CSS Code
Using Ghost Code Injection admin tool, add the following CSS code to the Site Header
section.
<style>
:root {
--logo-image: url('/assets/light-logo.png');
}
@media (prefers-color-scheme: dark) {
:root:not([data-user-color-scheme]) {
--logo-image: url('/assets/dark-logo.png');
}
}
[data-user-color-scheme='dark'] {
--logo-image: url('/assets/dark-logo.png');
}
.c-logo {
width: 48px;
height: 48px;
display: block;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
background-image: var(--logo-image);
}
</style>
Click Save.
Logo Note
- You might want to change the logo width and height by changing the value of
48px
to match your logo preference and to get the best result. - If the logo image has a large white space around it, trim that space with a photo editing app for better results.
- You will probably need to remove the browser cache for things to take effect.
- This way will ignore the logo uploaded from the Ghost admin and the theme now will use the logos located in the theme.
Navigation
You can add, edit, delete, and reorder navigation menu in Ghost Admin from the Settings → Navigation page.

To include a static page on your navigation menu, follow these steps.
First, type the page’s name as you’d like it appear on your menu in the label field.

Next, click on the item’s URL. The blog URL will already be auto-populated. Add the page slug after the final /. When you’re satisfied with your page configurations, click the Save button.
Secondary Navigation
Currently, the theme shows the Ghost Primary Navigation in both the header and footer.
To show the Secondary Navigation items in the footer section, open the partials/footer.hbs
theme file using a code editor and replace line 20
with the following line.
{{ navigation type='secondary' }}
That’s all you need to do.
Search
To enable search, you’ll need to create a new Content API Key. Follow these steps to create your Key.
In the left-side menu of your Ghost admin, click Integrations then + Add custom integration.

Give the new integration a name, like “Search”, and click Create.

A new Content API Key will be created. When you hover over it, a Copy button will appear. Click the button to copy the key to the clipboard.

Next, go to the Ghost admin Code Injection page. Access it from admin Settings > Advanced > Code Injection.
After replacing the CONTENT_API_KEY
value with your Content API Key, add the following code to the Site Header box:
<script>
var search_api_key = 'CONTENT_API_KEY';
</script>
It should look like this:

Click Save. That’s it. Go and test your search now.
The theme uses ghostHunter.
The search goes through the Post title and the content. It supports only Posts, not Pages.
The supported languages are German, Spanish, French, Portuguese, Italian, Finnish, Dutch, Turkish, and Danish.
ghostHunter Slow Search
If you have a large amount of content on your website, the search might become slow.
The issue is that Ghost does not have a built-in search feature so, to solve this and add search, a third-party library is used. In this case, the ghostHunter library.
This solution works well for most websites, but if the content is too large, it becomes a bit slow as the search happens on the browser side, and all the data will be loaded before the search is happening.
There are currently two solutions:
1. Search only on the post title and ignore the content
This will improve search performance and reduce the loaded content. If this sounds fine, download this app.min.js file and replace it with your theme assets/js/app.min.js
.
For reference, what I did was removing the post text from the request API in the assets/js/ghosthunter.js
theme file. So line 108
becomes the following.
var url = site_url + "/ghost/api/v4/content/posts/?key=" + search_api_key + "&limit=all&fields=id,title,url,published_at,feature_image";
Instead of.
var url = site_url + "/ghost/api/v4/content/posts/?key=" + search_api_key + "&limit=all&fields=id,title,url,published_at,feature_image&formats=plaintext";
This is done in the theme development mode to generate the final app.min.js
file loaded in the theme.
2. Using another search tool
Use another tool like Google Search, Elasticsearch, or Algolia. I have not tried them out, but here are a few resources at Ghost.
Pages
Manage pages for Tags, Authors, and Contact from the Pages section of Ghost admin.
Tags Page
Follow these steps to create the Tags page:
- From the Ghost admin Pages section, create a new page and give it a title, like “Tags”.
- From Page settings, select the Tags template.
- Publish the page.
- To add the page to the navigation, please check the Navigation section.

Note for Self-hosters
If you are self-hosting your website, you may need to do a server restart. This should get the Tags option to show up in the Template dropdown.
Authors Page
To create the Authors page:
- Create a new page and give it a title, like “Authors”.
- From Page settings, select the Authors template.
- Publish the page
- To add the page to the navigation, please check the Navigation section above

Note for Self-hosters
If you are self-hosting your website, you may need to do a server restart. This should get the Authors option to show up in the Template dropdown.
Contact Page
To create the Contact page:
- Create a new Page and give it a title, like “Contact”.
- Add your content and the contact form code using Formspree as a service. Please check the code example below.
- Publish the page.
- To add the page to the navigation, please check the Navigation section.
<form action="https://formspree.io/your@email.com" method="POST">
<input type="text" name="name" placeholder="Name">
<input type="email" name="_replyto" placeholder="Email">
<textarea name='message' placeholder="Message"></textarea>
<input class='c-btn' type="submit" value="Send">
</form>
For more information, check out How to Add a Contact Form to Your Ghost Blog.
Comments
The theme supports comments from Disqus, Commento and CommentBox.
If you display comments for logged in readers only, they will need to login/register into the comment system again. As you know, Ghost has no comment system, and these are third-party tools that are not integrated with and not part of Ghost.
For questions or issues about the commenting systems here, please contact their authors or check out their documentation.
Disqus
To enable Disqus as a comments system, open the partials/disqus.hbs
theme file using a code editor. Replace the aspirethemes-demos
value with the disqus_shortname
variable to match your Disqus account shortname.
var disqus_shortname = 'aspirethemes-demos';
So, if your Disqus shortname is exampleone
, the final code above should be:
var disqus_shortname = 'exampleone';
Once you finish, zip the theme files, and upload the final zip file to your Ghost website.
From the theme side, that’s all you need to set up Disqus. If you have any issues with comments not loading, make sure you have registered your website with Disqus (Step 1).
If you still have issues, check the Disqus troubleshooting guide.
Disable Disqus
To disable Disqus comments, open the post.hbs
theme file using a code editor and delete the line containing the {{> disqus}}
text (line 40
).
Once you finish, zip the theme files, and upload the final zip file to your Ghost website.
A quick way to disable Disqus is to copy and paste the following CSS code into the Ghost admin Code Injection Site Header.
<style>
#disqus_recommendations, #disqus_thread { display: none; }
</style>
Disable Disqus Recommendations/Ads
Checkout the Disqus Recommendations documentation.

Disqus Issues
If you have any issue with Disqus redirecting to any advertising pages, please disabled Tracking and Affiliate Links from your Disqus account.
Check out Keegan Leary’s blog post about this issue at https://keeganleary.com/disqus-is-evil-trash/.
Also, be aware of Disqus trackings. Check out https://supunkavinda.blog/disqus.
So, you might want to use another commenting system.
Thanks for sharing, Keegan!
Autoload Disqus
If you want to autoload Disqus without clicking the Comments button, open the partials/disqus.hbs
theme file using a code editor and replace the file content with the following code.
<div id='disqus_thread'></div>
<script>
var disqus_shortname = 'aspirethemes-demos'; // required: replace `aspirethemes-demos` with your Disqus shortname
// DON'T EDIT BELOW THIS LINE
var disqus_config = function () {
this.page.url ='{{url absolute="true"}}'
this.page.identifier = 'ghost-{{comment_id}}';
};
var d = document, s = d.createElement('script');
s.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
</script>
CommentBox
To enable CommentBox as a comments system, open post.hbs
file and replace line 40
replace with {{> commentbox}}
.
The next step is to create a CommentBox account. From the dashboard, create a new project by filling your site information. You will then receive a Project ID.
Copy that Project ID, open the partials/commentbox.hbs
theme file using a code editor and replace the my-project-id
value with it. That’s it.
Commento
To enable Commento as a comments system, open the post.hbs
theme file using a code editor and replace line 40
with {{> commento}}
.
The next step is to create a Commento account and register your domain with it.
Home Page Posts by Tag

With this feature, you can show posts at the home page by a specific tag. To do this, open the partials/index-tag-columns.hbs
theme file using a code editor and you fill find 3 code blocks, everyone looks like the following screenshot:

They are already configured with some tags but you will need to change them according to your own existed tags.
- Tag slug
- Tag slug
- Tag Name
Posts Per Page
You can control how many posts display per page from the package.json
file.
"config": {
"posts_per_page": 10
}
The theme default value is set to 10
posts per page.
Related Posts
If other posts share the same tags, related posts will be visible at the bottom of a post.
Google Analytics
To integrate Google Analytics, I recommend using the Google Analytics integration by Ghost.
Update Favicon
You can change the favicon in Ghost from Admin > General > PUBLICATION IDENTITY > Publication icon.

Responsive Tables
Responsive tables are required and essential for adding tabular content and allowing tables to be scrolled horizontally. You can make any table responsive across all viewports by wrapping a table
with .responsive-table
, for example:
<div class='responsive-table'>
<table>
...
</table>
</div>
Social Sharing Icons
You can customize and update a post’s social media sharing icons from the partials/share.hbs
theme file.
Footer Social Media Icons
Footer social media links are placed in the partials/social-icons.hbs
file.
Ghost supports adding Facebook and Twitter profile URLs from the admin panel. Go to General > Social accounts and add your URLs. This will update Facebook and Twitter URLs within the footer social media section.

Available Social Media Icons
The theme uses Evil Icons to provide simple and clean icons for other social accounts. Here you can find a list of the social media icons to use:
<span data-icon='ei-sc-facebook' data-size='s'></span>
GitHub
<span data-icon='ei-sc-github' data-size='s'></span>
<span data-icon='ei-sc-instagram' data-size='s'></span>
<span data-icon='ei-sc-linkedin' data-size='s'></span>
Odnoklassniki
<span data-icon='ei-sc-odnoklassniki' data-size='s'></span>
<span data-icon='ei-sc-pinterest' data-size='s'></span>
Skype
<span data-icon='ei-sc-skype' data-size='s'></span>
SoundCloud
<span data-icon='ei-sc-soundcloud' data-size='s'></span>
Telegram
<span data-icon='ei-sc-telegram' data-size='s'></span>
Tumblr
<span data-icon='ei-sc-tumblr' data-size='s'></span>
<span data-icon='ei-sc-twitter' data-size='s'></span>
Vimeo
<span data-icon='ei-sc-vimeo' data-size='s'></span>
VK
<span data-icon='ei-sc-vk' data-size='s'></span>
Youtube
<span data-icon='ei-sc-youtube' data-size='s'></span>
As mentioned above, Ghosts supports adding only Twitter and Facebook links from the admin. But the theme comes with other social icons in the sidebar. Edit or update these in the partials/sidebar-social-icons.hbs
file. For example, here’s the Instagram code block:
<li class='c-social-icons__item'>
<a href='#' aria-label='Instagram' target='_blank' rel='noopener'>
<span class='c-social-icons__icon' data-icon='ei-sc-instagram' data-size='s'></span>
</a>
</li>
The code above contains the ICON code from the above list and the social media link (a
) within a list element (li
).
Next, replace your Instagram full URL with the link href
value. If your Instagram URL is:
https://www.instagram.com/ghost/
Then the new code will be:
<li class='c-social-icons__item'>
<a href='https://www.instagram.com/ghost/' aria-label='Instagram' target='_blank' rel='noopener'>
<span class='c-social-icons__icon' data-icon='ei-sc-instagram' data-size='s'></span>
</a>
</li>
If you want to remove Instagram altogether, you can delete all the code blocks, the li
, a
, and the icon.
Languages
Melaka ships with many languages already. But if you’d like to add another one, you’ll be able to do that too.
Theme Translation
Melaka supports Ghost i18n and comes with Arabic, German, Italian, Spanish, French Finnish, Portuguese Dutch, Turkish and Danish translation.
To use a language other than English, go to your Ghost admin Settings > General > PUBLICATION INFO and enter the ISO Code into the Publication Language field.
The following is a list of the available theme languages with the code to use.
ar
for Arabicda
for Danishde
for Germanydu
for Dutchen
for Englishes
for Spanishfi
for Finnishfr
for Frenchit
for Italianpt
for Portuguesetr
for Turkish

Add a New Language Translation
If the theme does not have a translation for your language, follow the following steps to add a new language translation.
- Create a new file using a code editor in the theme’s locales folder with the ISO Language Codes code. Foe example, if the new language is Japanese, the ISO code will be
ja
and the file name will beja.json
. - In the same locales folder, open the
en.json
file and copy its content into your new language file. - Start translating, as shown in the following Edit Translation section.
- Go to your Ghost admin Settings > General > PUBLICATION INFO and enter your language ISO code into the Publication Language field. For example,
ja
. - Click Save settings.
Once you finish, zip the theme files, and upload the final zip file to your Ghost website.
You may want to restart Ghost or deactivate and activate the theme again to make the new changes effective.
Edit Translation
To improve or edit a translation in a specific available language, you can open the language file using a code editor in the locales
folder:
|____locales
| |____ar.json
| |____da.json
| |____de.json
| |____du.json
| |____en.json
| |____es.json
| |____fi.json
| |____fr.json
| |____it.json
| |____pt.json
| |____tr.json
For example, the German translation file looks like this:
{
"Loading": "Beladung",
"More Posts": "Mehr Artikel",
"Recent Posts": "kürzliche Artikel",
"Featured Post": "Featured Artikel",
"Page Not Found": "Seite nicht gefunden",
"Load Comments": "Bemerkungen",
"You might also like": "Sie könnten daran interessiert sein",
"Tags": "Stichworte",
"Authors": "Autoren",
"Navigation": "Navigation",
"Published with {ghostLink} & {themeLink}": "Veröffentlicht mit {ghostLink} & {themeLink}",
"Share on Twitter": "Auf Twitter teilen",
"Share on Facebook": "Auf Facebook teilen",
"Share on LinkedIn": "Auf LinkedIn teilen",
"Share on Pinterest": "Auf Pinterest teilen",
"Share via Email": "Teilen Sie per E-Mail",
"Copy link": "Link kopieren",
"Link copied to clipboard": "Link in die Zwischenablage kopiert",
"Search": "Suche",
"Search {siteTitle}": "Suche {siteTitle}",
"Type to Search": "Tippe um zu suchen",
"Enable dark mode": "Schakel de donkere modus in",
"Account": "Konto",
"Log in": "Einloggen",
"Log out": "Ausloggen",
"Continue": "Fortsetzen",
"Subscribe": "Abonnieren",
"Your email": "Deine E-Mail-Adresse",
"Please check your inbox and click the link to complete the login.": "Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Link, um die Anmeldung abzuschließen.",
"Please check your inbox and click the link to confirm your subscription.": "Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Link, um Ihr Abonnement zu bestätigen.",
"Please enter a valid email address!": "Bitte geben Sie eine gültige E-Mail-Adresse ein!",
"An error occurred, please try again later.": "Ein Fehler ist aufgetreten. Bitte versuchen Sie es später erneut.",
"Already have an account?": "Hast du schon ein Konto?",
"Don't have an account yet?": "Sie haben noch keinen Account?",
"This post is for paying subscribers only": "Dieser Beitrag ist nur für zahlende Abonnenten",
"This post is for subscribers only": "Dieser Beitrag ist nur für Abonnenten",
"This post is for subscribers on the ": "Dieser Beitrag ist für Abonnenten der ",
"This page is for paying subscribers only": "Diese Seite ist nur für zahlende Abonnenten",
"This page is for subscribers only": "Dieser Seite ist nur für Abonnenten",
"This page is for subscribers on the ": "Diese Seite ist für Abonnenten der ",
"Upgrade your account": "Aktualisieren Sie Ihr Konto",
"Join the newsletter to receive the latest updates in your inbox.": "Treten Sie dem Newsletter bei, um die neuesten Updates in Ihrem Posteingang zu erhalten"
}
Each line consists of a left key ("More Posts"
) and a right value ("Mehr Artikel"
).
The key is plain English that exists in all translation files and should not be changed. You should change only the value.
If you have any suggestions to improve a current translation or add a new language, please contact me.
Portal Text & Translation
There is no way to change or translate the Portal text yet. The Portal is not part of the theme files but a core Ghost component.
I suggest reaching out to the Gost team ( support@ghost.org ); so they might work on this issue or have a workaround.
RTL
RTL means right to left. Turning on RTL makes the theme readable for languages written from right to left, like Arabic or Hebrew.
To enable the RTL option, open the partials/head.hbs
theme file using a code editor and change line 10
to {{> compiled/inline-css-rtl }}
.
Save the file and upload the theme to your Ghost blog.
Once you finish, zip the theme files, and upload the final zip file to your Ghost website.
Multiple Languages Support
The theme supports translations for different languages, which means if you set the site language to French, some parts of the theme will change to French, for example, button labels.
On the other hand, having multiple languages in one website is not supported out of the box in Ghost so the theme. This guide by Ghost explains how to configure multiple languages. I have not tried it, but it might be a good starting point.
Syntax Highlighting
You can add a fenced code block by placing triple backticks ```
before and after the code block. For example:
``` pre { background-color: #f4f4f4; max-width: 100%; overflow: auto; } ```
Will produce the following gray look:

To highlight a code block, add the language alias like css
or js
to the code block. For example, the CSS code in the previous example will wrap between ```css
and ```
as follows:
```css pre { background-color: #f4f4f4; max-width: 100%; overflow: auto; } ```
This will produce the following colored look:

To add inline code, wrap the text between two backticks ` `
.
Prism
Melaka ships with Prism.js, a lightweight, robust, and elegant syntax highlighter.
The initial Prism package includes some languages, like Markup, CSS, C-like, and JavaScript.
You can add support for more languages. For example, to add support for PHP, get the PHP component script from Prism CDN.
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.13.0/components/prism-php.js"></script>
From the side admin menu, go to Code Injection and add the script to the Site Footer section. Be sure to click Save.

Theme Deploy with GitHub Actions
Melaka comes integrated with the Deploy Ghost Theme Github action. The purpose of the GitHub action is to take the theme from the GitHub repo and send it to your website.

I have written about this at How to Deploy Your Ghost Theme Using Github Actions. All you need to do is follow steps 1 and 2.
The Deploy Ghost Theme action is developed by Ghost and works with any Ghost install whether you self-host Ghost or using Ghost Pro.
Code Injection
Another choice for customization is to use the Ghost Code Injection settings in Ghost admin.
For a CSS example, you can use the following code in the Site Header section to change the logo color and font size.
<style>
.c-logo__link {
color: #4550E5;
font-size: 32px;
}
</style>
Watch the following short video about Ghost Code Injection, how it works, and how to use it.
Changing Colors with CSS Variables
Using Code Injection, you can change the theme colors for the light and dark modes with CSS Variables.
For a list of available theme variables, check:
- Light theme:
assets/sass/settings/colors.scss
- Dark theme:
assets/sass/settings/colors-dark.scss
Dont’t change the colors in theses file, use it only as a reference for the available CSS Variables and instead use Code Injection as mentioned below to change the colors.
If you want for example to change the theme background and brand colors. You can copy the color variable and add it inside each code block like the following example.
The brand color is the colors shown in buttons and content links.
<style>
:root {
--bg-color: red;
--color-brand: red;
}
@media (prefers-color-scheme: dark) {
:root:not([data-user-color-scheme]) {
--bg-color: green;
--color-brand: red;
}
}
[data-user-color-scheme='dark'] {
--bg-color: green;
--color-brand: red;
}
</style>
Notice that we duplicated the variable for dark mode in two blocks.
In the above example, we changed the color for the light mode to be red
and to green
for the dark mode. You can override this for any other variable.
If, for example, you want to add another color that is not available in the available theme variables and wants to add another style to a new element. You can create a new variable and give it a name and value.
We can extend the previous example to add a new color for the logo color and assign that variable to the .c-logo__link
class.
<style>
:root {
--bg-color: red;
--color-brand: red;
--color-logo: blue;
}
@media (prefers-color-scheme: dark) {
:root:not([data-user-color-scheme]) {
--bg-color: green;
--color-brand: red;
--color-logo: gold;
}
}
[data-user-color-scheme='dark'] {
--bg-color: green;
--color-brand: red;
--color-logo: gold;
}
.c-logo__link {
color: var(--color-logo);
}
</style>
The logo will then have a blue
color for the light mode and gold
color for the dark mode.
Customize Images Height
If you want to customize the height of the images on the home page, can use the following CSS code.
<style>
.c-post-card__image-wrap {
padding-top: 120%;
}
</style>
The theme default value is 120%
. So, you can increase or decraese this value as needed.
You can add the code in Ghost Code Injection section.
Customize Logo Size
If you are using an image as a logo (instead of the site name) and want to change the logo size, use the following code in Code Injection.
<style>
.c-logo__img {
max-height: 32px;
}
</style>
The default value is 32px
, so you can increase this value to match your preference.
If the logo image has a large white space around it, trim that space with a photo editing app for better results.
Footer Copyright
You can update the footer copyright line information from the theme partials/footer.hbs
file. Open and update that file using a code editor.
AMP
The AMP integration in Ghost is enabled by default, but if you prefer not to use the feature then you can turn it off in the settings within Ghost Admin.
Read more about AMP at Google AMP + Ghost
The theme didn’t have an AMP file; the Ghost default/core one will be used instead. If you want to customize it, you can add the default Ghost template to the theme folder and customize it.
Theme Development
This section is for developers only, and I assume you know what you are doing.
If you need to add custom CSS code, I highly recommend using Code Injection to avoid redoing your customizations with future theme updates.
Changing any .hbs
file, for example, post.hbs
, does not require being in development mode with gulp running. Just edit the file in your preferred editor and upload it.
If you are a developer and need to do heavy customization work, the theme uses Gulp to compile Sass and JavaScript. This improves the development flow and makes it much faster.
First, make sure you have Node.js, npm, Gulp CLI, and Bower installed. Check My Current Setup.
Run the following command in the theme root directory to install npm and bower dependencies.
npm install
To start Gulp, run:
gulp
This will compile Sass and JavaScript files and start watching changes as you edit files.
Gulp will produce two files:
➊ assets/js/app.min.js
: The final main JavaScript file.
This file is generated from many other JavaScript files listed in the gulpfile.js
file. Gulp will do all the work to create that file, so no manual work is needed.
Gulp will watch your changes in the assets/js/app.js
or assets/js/ghosthunter.js
(if exist) and will then generate the final app.min.js
file.
➋ partials/compiled/inline-css.hbs
: The final CSS file. It is used as an Internal CSS in the theme partials/head.hbs
.
This file is generated from the assets/css/style-min.css
file, which was generated by Gulp.
If you are working with Gulp, it’s recommended you avoid editing these files. Instead, do customizations in assets/sass
for CSS or in assets/js/app.js
JavaScript. This way, you can make sure the flow is going in the right direction and never lose any changes.
My Current Setup
In case you are wondering what my current environment set up is and which package versions I use, take a look at the following:
$ node -v
v14.17.0
$ npm -v
7.16.0
$ bower -v
1.8.12
$ gulp -v
CLI version: 2.3.0
Local version: 4.0.2
This environment works well for running Ghost and also for theme development.
I use macOS Monterey / M1 Chip.
You don’t have to have the exact environment setup, so that’s fine if your current setup works.
Zip Theme Files
Use one of the following three options to create a zip file ready to upload to your Ghost website.
➊ Using your computer program
You can compress it as a standard folder just like you do with any other folder on your computer. If you are on Mac, right-click on the theme folder to view the context menu. Then, click the Compress option.

➋ Using the command line
zip -r melaka.zip melaka -x '*.git*' '*node_modules*' '*bower_components*'
This command will exclude the node_modules and bower_components in case you are running gulp. And in case you are using Git, it will remove the .git folder.
➌ Using Gulp
Use the gulp zip
command if you are running gulp.
Theme Update
You may be wondering: how can I update my theme to the latest theme version?
There are two choices:
- Keep your current theme and replace only the changed files from the new version. You can find the modified files on the theme page Changelog
- Use the latest version as a starting point and redo your theme changes and customizations
One way to reduce the need for redoing customizations is to use the Code Injection tool. This is very helpful for adding custom CSS and tracking code. Keeping your custom CSS code with Code Injection is always recommended.
Your feedback is very welcome ♥
I’m open to your feedback and hear your experience about my themes and work. If you have a few minutes, please send your thoughts through this Google Form.
Thank you for your time!
