Time for action – enhancing the footer section appearance with CSS

Perform the following steps to enhance the footer style:

  1. Adjust the footer font, color, and the margin, as follows:
    .blog-footer {
      background-color: #ecf0f1;
      padding: 60px 0;
      font-family: "Varela Round", Arial, sans-serif;
      margin-top: 60px;
    }
    .blog-footer,
    .blog-footer a {
      color: #7f8c8d;
    }
  2. The footer contains social media links. Let's adjust the styles that encompass the margin, padding, alignment, colors, and whitespace, as follows:
    .social-media {
      margin: 0 0 30px;
    }
    .social-media ul {
      margin: 0;
      padding-left: 0;
    }
    .social-media li {
      margin: 0 8px 10px;
      list-style: none;
    }
    .social-media li,
    .social-media a {
      font-size: 18px;
    }
    .social-media a:hover {
      color: #333;
    }
  3. Set the margin-top ...

Get HTML5 and CSS3: Building Responsive Websites now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.