Ich habe einige CSS-Beispiele mit ChatGPT und Claude ausprobiert, zum Beispiel:
.category-box-heading,
.category-box-heading a,
.category-box-heading h3 {
max-width: 100%;
width: 100%;
display: block;
word-break: break-word;
overflow-wrap: break-word;
white-space: normal !important;
overflow: visible !important;
text-overflow: clip !important;
line-height: 1.4;
padding: 5px 0;
}
.parent-box-link {
display: block;
width: 100%;
}
@media screen and (max-width: 767px) {
.category-box-heading h3 {
font-size: 16px; /* Passen Sie diesen Wert nach Bedarf an */
}
}
Aber es funktioniert nicht.
Gibt es eine Möglichkeit, die Desktop-Ansicht auf Mobilgeräten zu erzwingen? Es wäre perfekt, Beschreibung und Unterkategorien zu haben.
Danke!