How to change the footer color

How do I change the color of the footer in OC 8.2? I tried to change the colors of

body-public footer .info {

color: #777;
text-align: center;
margin: 0 auto;
padding: 20px 0;

}

body-public footer .info a {

color: #777;
font-weight: 600;
padding: 13px;

but it doesn't worked.

Can you send a Live Website with 8.2 so that I can show you the needed CSS?

For what do you need a live Website? Just post the code to change here and the name of the file, if it's not styles.css.

@Liwindo Hi, maybe this url can help you:

https://doc.owncloud.org/server/8.2/developer_manual/core/theming.html#changing-the-default-colours

Thx but no, 'cause there's no word about the footer-color.

@Liwindo did you set 'theme' => 'example' in your config.php?

Steps i did and went fine:

1) Edit themes/example/core/css/styles.css with your code
2) Edit config.php file with this line:
'theme' => 'example'

Open my browser and the colour was changed

That's my code of the styles.css of my template and the footer don't work:

body-login {

text-align: center;
background-image: url('../img/background.jpg?v=1');
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;

}

body-public footer .info {

color: #000000;
text-align: center;
margin: 0 auto;
padding: 20px 0;

}

body-public footer .info a {

color: #000000;
font-weight: 600;
padding: 13px;
margin: -13px;

}