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?
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.
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;
}
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.