No products in the cart.
Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
-
3rdthemagical
ParticipantJust swap visibility values.
function toggleTheme() { const darkThemeBtn = document.getElementsByClassName("theme-toggle-dark")[0]; const lightThemeBtn = document.getElementsByClassName("theme-toggle-light")[0]; const darkThemeState = darkThemeBtn.style.visibility; darkThemeBtn.style.visibility = lightThemeBtn.style.visibility; lightThemeBtn.style.visibility = darkThemeState; }
- AuthorPosts
Viewing 1 post (of 1 total)