🌍
Français
merci ça marche au poil la modif dans le CSS !
Essayez plutôt :
.commentshidden #pictureComments { display: block; }
bonjour, je voudrai modifier le thème Élégant en montrant par défaut les commentaires et d'autres petites modifs cosmétiques
je utilise le thème Élégant comme parent, je dois modifier le fichier scripts_pp.js aux lignes :
// comments show/hide var commentsswicther=jQuery("#commentsSwitcher"); var comments=jQuery("#thePicturePage #comments"); commentsswicther.html("<div class=\"switchArrow\"> </div>"); if (comments.length == 1) { var comments_button=jQuery("#comments h3"); if (comments_button.length == 0) { jQuery("#addComment").before("<h3>Comments</h3>"); comments_button=jQuery("#comments h3"); } if (jQuery.cookie('comments') == 'visible') { comments.addClass("commentsshown"); comments_button.addClass("comments_toggle").addClass("comments_toggle_off"); } else { comments.addClass("commentshidden"); comments_button.addClass("comments_toggle").addClass("comments_toggle_on"); } comments_button.click(function() { commentsToggle() }); commentsswicther.click(function() { commentsToggle() }); } }); function commentsToggle() { var comments=jQuery("#thePicturePage #comments"); var comments_button=jQuery("#comments h3"); if (comments.hasClass("commentshidden")) { comments.removeClass("commentshidden").addClass("commentsshown"); comments_button.addClass("comments_toggle_off").removeClass("comments_toggle_on");; jQuery.cookie('comments', 'visible', {path: "/"}); } else { comments.addClass("commentshidden").removeClass("commentsshown"); comments_button.addClass("comments_toggle_on").removeClass("comments_toggle_off");; jQuery.cookie('comments', 'hidden', {path: "/"}); }
mais là je sèche...une petite aide svp ?