Thank you for the theme. I want to add the icon to the navbar, so I tried moving it as shown below. However it gets recreated somehow in the original position, with the result that there are now two icons, and neither can trigger.
Is there any way to move the icon safely?
hook.doneEach(function() {
const darkLightLink = document.querySelector("#docsify-darklight-theme");
const fred = document.getElementsByClassName("app-nav")[0].appendChild(darkLightLink); //
darkLightLink.style.display = 'inline-block';
darkLightLink.style.position = 'relative';
darkLightLink.style.top = '15px';
});
Thank you for the theme. I want to add the icon to the navbar, so I tried moving it as shown below. However it gets recreated somehow in the original position, with the result that there are now two icons, and neither can trigger.
Is there any way to move the icon safely?