Hi @kaylaz!
I was using Shoreditch on WordPress.com and they had several color palettes to choose from, but now on this version there is no option for changing any colors except the background color.
Those color palettes are a WordPress.com feature, not something that’s built into the the theme itself ?? You can use the Additional CSS panel to add CSS to change individual colors – or if you are able to look in your WordPress.com account and tell me which palette you wanted, I can grab a copy of that CSS for you.
Also, this version has large text at the bottom that says “Powered by WordPress Theme: Shoreditch. How can I remove this text? I have tried CSS but it didn’t work, plus I have heard that this is frowned upon by SEO.
This can be hidden with CSS. SEO implications are something that lots of people have different opinions on, but if it were me, and this were my site I’d just use the CSS:
.site-info {
display: none;
}
Adding that under Additional CSS in your Customizer should do the trick.
I also tried looking for it in the PHP and did find the text there, but I have heard that this can be dangerous and mess with your website and it is only temporary as it goes away when you update the theme.
If you want to remove it manually, you’ll want to set up a child theme. Then you could make a copy of the parent theme’s footer.php
file into your child theme folder, and remove the entire site-footer
element.
I’m not able to see the site you’ve linked to – but if you can point out the item you want to change the color on using the Shoreditch demo site here, I can point you in the right direction (unless you’d rather just grab a copy of the color palette CSS like I mentioned above) ??