Zenoble
Forum Replies Created
-
Forum: Reviews
In reply to: [Match] Very good.Sous Mac j’utilise Poedit, je trouve que c’est le plus simple à utiliser et le plus adapté à ce qu’on veut faire (càd traduire des thèmes et plugins rapidement).
Sinon, te filer les fichiers avec une autre extension n’aurait pas vraiment d’intérêt puisque WordPress recherche des .po et .mo et que là comme ?a je saurais pas vraiment comment faire. ??
Tiens moi au courant. ??
Forum: Reviews
In reply to: [Match] Very good.Salut Audrey,
J’ai placé les deux fichier à cette adresse. Si tu as besoin d’aide pour l’installation, n’hésite pas. ??
A+
Sur, that’s why i said that my solution “isn’t a good fix”, but temporary before the next version. ??
Set a min-height allows the .stylish-popular-widget element to keep a good height height even if there is no thumbnail.
I think it’s because of the thumbnail.
I’ve already saw this bug in my blog. Two solutions :
set a thumbnail to each posts.
set a min-height in your stylesheet for the stylish-popular-widget element..stylish-popular-widget { min-height:120px; }
This solution isn’t really good but it works. Report the bug and maybe it will be fixed in th enext release. ??
Forum: Your WordPress
In reply to: New sitePretty cool.
Good job ! ??
Forum: Reviews
In reply to: [Stylish Popular Posts] Very good.Hi ! Sorry, I just saw your answer.
Here is the files for french translation !
Glad to help you, Stylish is a very good plugin ??
Forum: Themes and Templates
In reply to: [Match] Changing Rose to blueHi edshot45,
You can’t do this in the admin. You have to create a child theme with the default stylesheet. Then, search and replace all the occurrences of the color you want to change.
There are 23 occurrences of the rose you’re looking for. Replace them with the color you want. ??
If you need some help to create a child theme : WordPress Codex : Thèmes enfants (FR)
Forum: Themes and Templates
In reply to: [Match] Changing Site brand text with imageI’m not sure about what you really want. If you are looking for an image instead of a text in the header, you have to create a child theme, download the header.php file, upload your logo, and replace the bloginfo(‘name’) by your image file. Something like this :
Replace default site-title :
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
By this :
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="you-image-path" alt="your-image-alt"></a>