I just tried, as a test, to use CSS to add a feature that displays images embedded within articles wider than the text blocks. Here's an example with the first image: https://www.linsenschuss.de/galerie/ast ... chennebel/
I added the following CSS for this:
Code
/* =========================================================
WIDE IMAGES INSIDE ARTICLES
========================================================= */
/* X3 containers containing wide images must not clip them */
body *:has(.bild-breit),
body *:has(.bild-full) {
overflow: visible !important;
}
/* Wide article image */
.bild-breit {
width: min(1400px, calc(100vw - 48px));
max-width: none;
margin-top: 2.5rem;
margin-bottom: 2.5rem;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.bild-breit img {
display: block;
width: 100%;
max-width: none;
height: auto;
}
/* Nearly full-width article image */
.bild-full {
width: calc(100vw - 48px);
max-width: none;
margin-top: 3rem;
margin-bottom: 3rem;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.bild-full img {
display: block;
width: 100%;
max-width: none;
height: auto;
}
/* Smartphone */
@media screen and (max-width: 767px) {
.bild-breit,
.bild-full {
width: calc(100vw - 30px);
margin-top: 2rem;
margin-bottom: 2rem;
}
}Code
<div class="bild-breit">
<a href="{{path}}LDN1082.jpg" data-popup><img src="{{path}}LDN1082.jpg" alt="" /></a>
</div>Thanks for any support!