.footer-container class

img

Screen footer. By default, the footer contains the link to the registration page.

The following illustrations show:

  1. The #footer-container style before applying CSS changes.

  2. The #footer-container style after the background-color property has been changed to red.

Default CSSModified CSS
imgimg
.footer-container {
padding:25px;
border-top: 1px solid #f2f2f2;
text-align: center;
}
.footer-container {
padding:25px;
border-top: 1px solid #f2f2f2;
text-align: center;
background-color: red;
}