Cover Block with Full link

Burg in Attendorn

.wp-block-cover {
    position: relative; /* Wichtig für absolute Positionierung */
}

.wp-block-cover a.cover-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2; /* Über anderen Elementen */
    text-indent: -9999px; /* Versteckt den Text visuell, aber bleibt für Screenreader */
}

.wp-block-cover:hover {
    opacity: 0.9; /* Leichter Hover-Effekt */
    cursor: pointer;
}

.cover-full-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert