Blog: Post Details Link aria-Label anpassen

// Blog: Link zum Artikel aria-label anpassen: “Weiterlesen über” + Artikeltitel jQuery(document).ready(function($) { $(“.post-details.details-type-link”).each(function() { let ariaLabel = $(this).attr(“aria-label”); if (ariaLabel && ariaLabel.startsWith(“Read more about “)) { let newLabel = ariaLabel.replace(“Read more about “, “Weiterlesen über “); $(this).attr(“aria-label”, newLabel); }…Continue reading

Post Thumbail Rollover Link entfernen, weil redundant + Datums-Link + Fancy-Catgory-Link

// Post Thumbail Rollover Link entfernen, weil redundant // + Datums-Link jQuery(document).ready(function() { jQuery(“.post-thumbnail-rollover, .fancy-date a, .fancy-categories a, .single-related-posts .mini-post-img a, .blog-media.wf-td a”).each(function() { var anchor = jQuery(this); var newSpan = jQuery(““); // Ersetze das durch ein newSpan.attr(“class”, anchor.attr(“class”)); //…Continue reading

Del 1

Velkommen til Bilerfaring.no Del og les ekte erfaringer med biler i Norge – fra folk som faktisk har eid dem. Toyota Corolla (2015) Driftssikker og billig i drift. Har kjørt 120 000 km uten store problemer. Anbefales! Volkswagen Golf (2018)…Continue reading

Horizontal Element Container Wrapper – CSS Layout

.horizontal-container { display: flex; /* Enables horizontal layout */ flex-wrap: wrap; /* Allows wrapping to the next row if needed */ gap: 20px; /* Space between elements */ justify-content: flex-start; /* Aligns items at the start */ } .horizontal-container >…Continue reading

raver dogs slider overlay test

/* For your main slide headlines */ h1.slide-title { text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5); } /* For your slide sub-text */ p.slide-description { text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.6); }Continue reading