• Resolved anaist

    (@anaist)


    Hello Caroline,
    thanx for your beautiful theme! And thanx a lot for sharing it.
    I am looking for a way to show the comments at the end of each page. I mean to always show them as a default settings.
    Would that be possible?
    This is the website I am working on: https://www.espacefamille.be
    Cheers,
    Ana?s

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Caroline Moore

    (@sixhours)

    Yes, you can use CSS in a child theme or a CSS plugin (like Jetpack) to do this. I recommend using Firebug for CSS work–makes it much easier.

    Setting #comments to display: block in your child theme or custom CSS plugin should force the comments to stay visible.

    Thread Starter anaist

    (@anaist)

    Thanx Caroline!

    I have made only one change and it works! I set “display: all;” instead of “display : none;” on the #comments section of the CSS main page:

    /* =Comments
    ———————————————– */

    #comments {
    background: #fff;
    clear: both;
    display: all;
    padding: 0 50px 50px;

    Theme Author Caroline Moore

    (@sixhours)

    Fair warning: if you’re making this change directly to the parent theme’s stylesheet, you will lose your changes next time the theme is updated. It would be better to use a child theme or a CSS plugin, as I said above.

    display: all is not a valid CSS display property. You’d want to use display: block.

    It would be nice to have the comments already enabled. Nice simple theme, thank you!

    thanks caroline , I work it !!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Show comments’ is closed to new replies.