J’ai essayé du CSS avec ChatGPT et Claude, par exemple :
.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; /* Ajustez cette valeur selon vos besoins */
}
}
Mais ça ne fonctionne pas.
Y a-t-il un moyen de forcer la vue bureau sur mobile ? Ce serait parfait pour avoir la description et les sous-catégories.
Merci !