Resonar – Background image

  • Unknown's avatar

    Ok so I had to change my theme…

    The resonar theme:

    1) How do I set the background image for my static front page only? I dont want it on all other pages.

    2) Where do I remove “leave a reply” etc. from my frontpage, other pages and even my blog posts?

    The blog I need help with is: (visible only to logged in users)

  • Hi!

    If you want to remove the comments option from individual pages/posts: Select ‘WP Admin’ Menu from “My Site” page.

    Then, select posts>>All posts or pages>>All Pages, depending of what you need. You will have the complete list of your posts/pages. Hover on your target post and click on “Quick Edit”. You will find there a checkbox called “Allow Comments”

    Hope this helps you.

  • Unknown's avatar

    Thank you raulanton, one problem solved.

    Now how to set background image to one specific page or post only.
    the image takes over all my pages and posts..
    I just want them to be white

  • Now how to set background image to one specific page or post only.
    the image takes over all my pages and posts..

    This can be done with custom CSS.

    To target the background of a specific page:

    body.page-id-122 {
      background: url(http://path/to/your/image.png);
    }

    A specific post:

    body.postid-35 {
      background: url(http://path/to/your/image.png);
    }

    Grab the ID number of each specific post or page from the browser address bar when editing the post or page in WP Admin, or view the page source and look at the body tag on that post or page. For example, on this post, the post ID is 35:

    <body class="single single-post postid-35 single-format-standard logged-in admin-bar no-customize-support custom-background mp6 typekit-enabled customizer-styles-applied custom-menu theme-menu-maximized highlander-enabled highlander-light custom-colors">

    Learn more about the background CSS property:

    http://htmldog.com/reference/cssproperties/background/

  • Yes, localhue, sorry… I was not connected.

    Anyway, I see kathrynwp provided a complete, nice answer!

    :)

  • The topic ‘Resonar – Background image’ is closed to new replies.