Reply To: Changing the header and footer color

Homepage Community Forums Epik Theme Support Changing the header and footer color Reply To: Changing the header and footer color

#22812
Wes
Moderator

    In the demo, the text and link colors can be found on line 3417 in the style.css file, but I’m not sure where it’s located on your site since it could be in a totally different place.

    It should look something like this –

    /* # Site Footer
    ---------------------------------------------------------------------------------------------------- */
    
    .site-footer {
    	background-color: #1a1a1a;
    	color: #fff;
    	font-size: 16px;
    	font-size: 1.6rem;
    	padding: 20px 0;
    	text-align: center;
    	text-transform: uppercase;
    }
    
    .site-footer p {
    	font-size: 12px;
      letter-spacing: 1px;
    	margin-bottom: 0;
    }
    
    .site-footer a {
    	color: #fff;
    	font-weight: 600;
    }