1
0
-1

I would like to make the footer color different from the other colors on my page? How do I do this?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Go to Website > Custom CSS

      These are some common styles users make for adjusting the footer

      /*===============
      FOOTER 
      ===============*/
      
      
      div#editableFooter {
      margin-bottom: 5px;
      }
      
      #footerContent, #footer H2{
      background-color: #9B392D;
      padding: 0px;
      color: #fff;
      }
      
      #footer td {
      color: #fff;
      }
      
      #footer td a:link, #footer td a:active, #footer td a:visited {
      color: #fff;
      }
      
      #footer td a:hover {
      color: #C0392B;
      }
      
      

      If you have further questions or need help, please open a support ticket.

        CommentAdd your comment...