Bonjour,
Savez-vous s'il est possible d'afficher un catégorie sur 2 lignes ?
Ex : • Mon blog SAISON 1
devient :
• Mon blog
SAISON 1

J'ai essayé en ajoutant un <br/> après blog ou en mettant <span>SAISON 1</span> mais apparemment les noms de catégories ne sont pas interprétés en HTML.
Merci
Oui, pardon. Ce sont des catégories WP toutes bêtes, générées par un widget.
Voici les différents codes qui gèrent cette parti, enfin je crois.

PHP : Page sidebar

if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
	<?php wp_list_pages('title_li=' . __('Pages:')); ?>
	<?php wp_list_bookmarks('title_after=&title_before='); ?>
	<?php wp_list_categories('title_li=' . __('Categories:')); ?>

[i]HTML : Généré


<li class="cat-item cat-item-5"><a title="Mon blog SAISON 1" href="http://mon blog.com/test/?cat=5">Mon blog SAISON 1</a>
</li>

CSS : Page CSS Smiley confus

#col22 #categories-3.widget ul li.cat-item-5 { position:relative; font-size:1.1em; color:white; bottom:552px; right:0px; }
#col22 #categories-3.widget ul li.cat-item-6 { position:relative; font-size:1.1em; color:white; bottom:382px; right:0px; }
#col22 #categories-3.widget ul li.cat-item-5 a,
#col22 ul #categories-3.widget ul li.cat-item-6 a { color:white; }
#col22 #categories-3.widget ul li.cat-item-5 a:hover,
#col22 ul #categories-3.widget ul li.cat-item-6 a:hover { color:grey; }

Voilà pour les infos complémentaires , la catégorie s'affiche toujours sur 1 seule ligne…
Merci de tes conseils; Smiley murf [/i]
Modifié par hatfab (13 Feb 2011 - 04:16)