Remove license and change body text font colour

Hi

firstly thanks for making Shapely - it’s a great theme. I have two questions for my site (www.anew.nz)

  1. I have purchased a license. How do I use it to remove the copyright footer?
  2. How do I change the body text font colour to black?

Thanks
Roger

Hello Roger

  1. you can edit footer.php file to remove footer credit or this CSS code that will hide it:

.footer .footer-credits {
display: none;
}

  1. body font color can be changed from the appearance > customize or by this custom css code:

body {
color: #000000;
}

CSS codes can be added in the appearance > customize > additional css

Thanks for this - much appreciated

You are welcome :slight_smile: