Extend the text width in the category banner

Great theme thank you!

Is it possible to have max-width: 800px; instead of 500px ? It doesn’t look good and my description is not so long…

You can easily edit the theme component in the admin panel > Customize > discourse-category-banners > Edit CSS/HTML

In Common css you’ll have in line height : max-width: 500px; you can edit and save.

You’ll just have to edit this after each update.

This should work too if you want it permanently : add a css line in another css stylesheet, my guess is that something like that would work :

.category-title-header .category-title-contents {
    max-width: 800px !important;
 }

En français

Dans admin/customize/themes on peut facilement modifier le css/html du thème ajouté, en cliquent sur le bouton à côté de “Vérifier les MAJ”

Ligne 8 dans Général > CSS, il y a la référence au max width: 500px;

Vous pouvez changer la taille ici, sauvegarder et ça fonctionnera. Simplement, à chaque MAJ du thème il faudra faire cette modification.

Une autre solution permanente devrait fonctionner, sur une autre feuille dans Themes, vous pouvez ajouter ce code :

.category-title-header .category-title-contents {
    max-width: 800px !important;
 }

Je pense que ça devrait marcher

7 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.