News or Magazine or Blog
-
-
@charles feel free to contribute to the Zenith update I made (not fine yet, but at least a few steps forward).
-
@AOKP said in News or Magazine or Blog:
@charles feel free to contribute to the Zenith update I made (not fine yet, but at least a few steps forward).
I tried to install and check it out via npm and it couldn't find the package.
-
@charles it is not on npm yet. Originally it was created by @trevor. But he abandoned it. So I cloned it into my GitHub and fixed it a bit:
https://github.com/ReyKoxha/nodebb-theme-zenith-v2 -
@yariplus How were you able to change the color of the dropdown to white with a lttile opacity? here https://yaricraft.com
-
@evoixmr It's just this css.
#content { background-color: rgba(255,255,255,0.9); } html { background-image: url(/images/ycss.png); }
-
@charles it is not on npm yet. Originally it was created by @trevor. But he abandoned it. So I cloned it into my GitHub and fixed it a bit:
https://github.com/ReyKoxha/nodebb-theme-zenith-v2 -
@evoixmr It's just this css.
#content { background-color: rgba(255,255,255,0.9); } html { background-image: url(/images/ycss.png); }
-
@yariplus said in News or Magazine or Blog:
@evoixmr It's just this css.
#content { background-color: rgba(255,255,255,0.9); } html { background-image: url(/images/ycss.png); }
CSS is not working for me. Is supposed to be content or body?
-
Try like this
#content { background-color: rgba(255,255,255,0.9); } body { background-color: transparent; } html { background-image: url(/images/ycss.png); }
-
@AOKP tried to clone it into the folder and select from acp but get
Error ENOENT: no such file or directory, open /node_modules/nodebb-theme-zenith/theme.json
-
Try like this
#content { background-color: rgba(255,255,255,0.9); } body { background-color: transparent; } html { background-image: url(/images/ycss.png); }
-
@charles be sure that the folder is named like that and does not contain the -master at the end.
@AOKP said in News or Magazine or Blog:
@charles be sure that the folder is named like that and does not contain the -master at the end.
Since your theme name has v2 in it didn't know had to change that.
Renamed folder from nodebb-theme-zenith-v2 to nodebb-theme-zenith and it works! Thanks!