jeanvictorgg
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Themes and Templates
In reply to: [Hamilton] How to limit the number of posts in home page?Settings → Reading → Blog pages show at most
Forum: Themes and Templates
In reply to: [Hamilton] erase the square of hamburger menuUnfornatelly I dont know, but maybe this:
.site-header .nav-toggle::before { display: none; }If you discover, please, tell us.
Forum: Themes and Templates
In reply to: [Hamilton] Dark mode checkbox on home page for all usersHi, thank you for all. I did it, here’s the result:
<input id="night-mode" class="lamp" type="checkbox" aria-label="night-mode" /> <label>Dark Mode</label> <script> const nightModeStorage = localStorage.getItem('gmtNightMode') const nightMode = document.querySelector('#night-mode') const metaThemeColor = document.querySelector('meta[name=theme-color]') if (nightModeStorage) { document.documentElement.classList.add('night-mode'); document.body.classList.add("dark-mode"); nightMode.checked = true } nightMode.addEventListener('click', () => { document.documentElement.classList.toggle('night-mode'); document.body.classList.add("dark-mode"); if (document.documentElement.classList.contains('night-mode')) { localStorage.setItem('gmtNightMode', true) document.body.classList.add("dark-mode"); return } localStorage.removeItem('gmtNightMode'); document.body.classList.remove("dark-mode"); }) </script>Forum: Themes and Templates
In reply to: [Hamilton] How to remove padding-top from site-nav menuIt’s very simple. Solved:
.site-nav.active{ margin-top:0px; }
Viewing 4 replies - 1 through 4 (of 4 total)