• Resolved keepingitril

    (@youthgas)


    Hi everyone,

    I am playing with a local install of https://wordpress.com/theme/coutoire Coutoire.

    I was wondering what CSS I need to add to hide the entire footer (or at least the link to the privacy policy, blog name and powered by), as well as remove the name, date, category, etc. line from the bottom of each post.

    Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Are you sure that’s the theme? That’s a theme on the wordpress.com site, and these support pages are for wordpress.org sites. And if that is the correct theme, and you have installed a wordpress.org site, then where did you get the theme from?

    Are you sure it’s not Couture?

    Thread Starter keepingitril

    (@youthgas)

    Very good question.

    If you go to https://wordpress.com/theme/coutoire and scroll right down the bottom, it will allow you to download it and the required parent theme, Varia. It doesn’t seem to be in the .org directory.

    On a side note, I also can’t see to work out how to show feature / full page width images as the demo site has.

    Ah, I see. OK, give me a few minutes to install the themes on my sandbox site and I’ll let you know.

    Thread Starter keepingitril

    (@youthgas)

    I think I’ve found the full width thing.

    Been a WP user for some time in the past, but returning to it now and blocks are different.

    (There is a full width option when you insert an image / gallery.)

    Sorry, I had to walk the dogs, too.

    So I assume you want to keep the widget area, which is also in the footer. But to hide the site info (Proudly powered by WordPress, etc), use this rule:

    
    .site-info {
       display: none;
    }
    

    To hide the meta info at the bottom of each post:

    
    .entry-footer {
       display: none;
    }
    
    Thread Starter keepingitril

    (@youthgas)

    Thankyou so much.

    I was trying to get rid of a pesky link which:

    .site-footer {
       display: none;
    }

    has resolved. It also has taken out the footer, which I think I might be ok with.

    Having said that…

    Is there a way of hiding just the

    <a class="privacy-policy-link" href="http://localhost/name/">About</a>

    which is JUST before the main footer information. This is the pesky thing I am really trying to get rid of.

    ***
    Just like magic.

    .privacy-policy-link {
       display: none;
    }

    Thanks again.

    • This reply was modified 6 years, 8 months ago by keepingitril.
    • This reply was modified 6 years, 8 months ago by keepingitril.
    • This reply was modified 6 years, 8 months ago by keepingitril.
    • This reply was modified 6 years, 8 months ago by keepingitril.
    • This reply was modified 6 years, 8 months ago by keepingitril.
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘CSS needed to remove content from theme’ is closed to new replies.