@oplik0 said in How to customize the Theme's design?:
Thank you for your reply.
I want to know where to write the code for design and I don't need follow components.
Capture.PNG
Instead of this, I need to add the following screen.
Capture2.PNG
You can check this image on http://planetstyles.net/demo/milk/3.3/1/viewtopic.php?f=5&t=25&sid=834ed09ad81c0c19778c16063ed453df
Please teach me.
Thank you again.
Trying to customize a theme
-
This is what I have done so far
cd /nodebb/node_modules
mkdir nodebb-theme-nameoftheme
git clone https://github.com/NodeBB/nodebb-theme-quickstart.git nodebb-theme-nameoftheme
Edit package.json, plugin.json and theme.json.
In each file replace nodebb-theme-quickstart with nodebb-theme-nameoftheme
In theme.json change the name and descriptionActivate the theme
Rebuild and RestartEdit header.tpl to add some text
<title>{browserTitle}TEST123</title>
Save and refresh the page. No change. I am sure I missed some steps. I am documenting how I do this so I can share with the group
-
Found my own answer.
I had to run ./nodebb build tpl && ./nodebb dev
Then the changes showed up