document.addEventListener("DOMContentLoaded", function() {
// Poiščemo tvoj originalni meni, ki ga je zgenerirala Astra
var originalMenu = document.querySelector(".main-navigation ul");
var targetContainer = document.getElementById("moj-dinamicni-meni");
if (originalMenu && targetContainer) {
// Kopiramo celoten meni v najino novo lebdečo pasico
var clonedMenu = originalMenu.cloneNode(true);
targetContainer.appendChild(clonedMenu);
}
// Skripta za pomanjšanje ob skrolanju
window.onscroll = function() {
var header = document.getElementById("smart-kinetic-header");
if (window.pageYOffset > 80) {
header.classList.add("sticky-active");
} else {
header.classList.remove("sticky-active");
}
};
});
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.