ich hab es jetzt doch mal probiert
In diesem Video zeige ich Euch wie man einen Standard Block ändert um hier in diesem Fall den Titel 2 farbig zu bekommen mit Einstellung im Zahnrad:
Ich hoffe das hilft dem einen oder anderen weiter ...

Code: Alles auswählen
<p>Meine Mutter hat <span style="color: blue;">blaue</span> Augen.</p>Code: Alles auswählen
<section data-bs-version="5.1" class="content5" group="Content">
<mbr-parameters>
<header>Layout Abstände</header>
<input type="checkbox" title="Volle Breite" name="fullWidth">
<input type="range" inline title="Oben" name="paddingTop" min="0" max="10" step="1" value="6">
<input type="range" inline title="Unten" name="paddingBottom" min="0" max="10" step="1" value="5">
<input type="range" name="textWidth" title="Text-Breite" min="4" max="12" value="11" step="1">
<header>Elemente Ein/Aus</header>
<input type="checkbox" title="Titel anzeigen" name="showTitle" checked>
<input type="checkbox" title="Untertitel anzeigen" name="showSubtitle" checked>
<header>Farben Design</header>
<input type="color" title="Hintergrund" name="bgColor" value="#ffffff">
<hr>
<input type="color" title="Farbe für Fett (B)" name="boldColor" value="#e43fda">
<input type="color" title="Farbe für Kursiv (I)" name="italicColor" value="#136ff7">
</mbr-parameters>
<div mbr-class="{'container': !fullWidth, 'container-fluid': fullWidth}">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-{{textWidth}}">
<h3 class="mbr-section-title mbr-fonts-style mb-4" mbr-if="showTitle" data-app-selector=".mbr-section-title" mbr-theme-style="display-2">
Artikel Titel
</h3>
<h4 class="mbr-section-subtitle mbr-fonts-style mb-4" mbr-if="showSubtitle" data-app-selector=".mbr-section-subtitle" mbr-theme-style="display-5"><b>
Ein</b> Untertitel <b>mit</b> System
</h4>
<p class="mbr-text mbr-fonts-style" data-app-selector=".mbr-text" mbr-theme-style="display-7">
In diesem Text kannst du Wörter <b>fett markieren</b> oder <i>kursiv</i> setzen. Durch das spezielle CSS ändern diese Wörter automatisch ihre Farbe basierend auf deinen Einstellungen im Zahnrad-Menü. Das ist perfekt für <b>Hervorhebungen</b> oder <i>Zitate</i>, ohne jedes Mal die Farbe manuell wählen zu müssen.
</p>
</div>
</div>
</div>
</section>Code: Alles auswählen
padding-top: (@paddingTop * 1rem);
padding-bottom: (@paddingBottom * 1rem);
background-color: @bgColor;
.mbr-section-subtitle {
color: #000000;
}
.mbr-text {
b, strong {
color: @boldColor;
font-weight: bold;
display: inline;
}
i, em {
color: @italicColor;
font-style: italic;
display: inline;
}
b i, i b, strong em, em strong {
color: @boldColor;
text-decoration: underline;
}
}
.mbr-section-title b {
color: @boldColor;
}
.mbr-section-title {
color: #232323;
}

Naja dann zeige ich Dir jetzt den Sinn mal TommyTommy Herrmann hat geschrieben: Fr 3. Apr 2026, 09:50 Was ich ausdrücken wollte ist, dass ich den Sinn für ein solchen Werkzeug meist nicht verstehe, solange man solche Einstellungen nur einmalig vornimmt.
Code: Alles auswählen
<section data-bs-version="5.1" class="border-divider" group="Separator">
<mbr-parameters>
<header>Border Einstellungen</header>
<input type="checkbox" title="Volle Breite (Kante zu Kante)" name="fullWidth" checked>
<input type="range" inline title="Dicke (px)" name="borderThickness" min="1" max="20" step="1" value="10">
<input type="color" title="Linien-Farbe" name="borderColor" value="#136ff7">
<select title="Linien-Stil" name="borderStyle">
<option value="solid">Durchgehend (solid)</option>
<option value="dashed">Gestrichelt (dashed)</option>
<option value="dotted">Gepunktet (dotted)</option>
<option value="double" selected>Doppelt (double)</option>
<option value="groove">Graviert (groove)</option>
<option value="ridge">Erhaben (ridge)</option>
</select>
<header>Abstände (Rahmen außen)</header>
<input type="range" inline title="Oben" name="paddingTop" min="0" max="10" step="1" value="4">
<input type="range" inline title="Unten" name="paddingBottom" min="0" max="10" step="1" value="5">
<header>Linien-Länge</header>
<input type="range" inline title="Breite (%)" name="lineWidth" min="5" max="100" step="5" value="100">
</mbr-parameters>
<div mbr-class="{'container': !fullWidth, 'container-fluid': fullWidth}">
<div class="row justify-content-center">
<div class="border-line" style="width: {{lineWidth}}%;"></div>
</div>
</div>
</section>Code: Alles auswählen
padding-top: (@paddingTop * 1rem);
padding-bottom: (@paddingBottom * 1rem);
background: transparent;
.container-fluid {
padding-left: 0;
padding-right: 0;
}
.border-line {
border-top: (@borderThickness * 1px) @borderStyle @borderColor;
margin: 0 auto;
min-height: 1px;
border-top-width: (@borderThickness * 1px);
border-top-style: ~"@{borderStyle}";
border-top-color: @borderColor;
}
.is-builder .border-divider {
min-height: 10px;
}
Mitglieder in diesem Forum: Ahrefs [Bot] und 7 Gäste