Changing Footer Text Color

Posted in: Newsmag
Post count: 8

Site: http://www.techanalyzer.net/

I changed the background in the footer from gray to white. This caused the white words to blend in with the now white background.

I was able to use CSS to change the text under the logo to black (wasn’t my prefered method), but I wasn’t able to find a work around for the columns to the right.

Also, unless I’m hovering over the social media icons, they cannot be seen. I went through the options in the theme panel, though it’s quite possible I simply missed them. Is there a work around for this or an option that I missed?

Great theme by the way.

Post count: 26

Hey,
For the Categories widget try out

.td_block_popular_categories ul a{
color:#222222;
}

For the Even More News try
.td_block_wrap .td_block_inner .entry-title.td-module-title a{
color:#222222;
}

Hope that does the trick!

Post count: 26

Also, I’m pretty sure the social bar at the bottom uses the class .td-icon-font

Try the following CSS, should make the icons show up

.td-icon-font{
color:#222222!important;
}

And to make the hover look nice

.td-icon-font:hover{
color:#ffffff!important;
}

To leave the mail icon as it is since it has no background

.td-icon-mail-1:hover{
color:#222222!important;
}

  • This reply was modified 11 years by Sean. Reason: For hover appearance
Post count: 7909

Hi,

Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/akLj3PjQ

.td-footer-container .td_block_popular_categories ul a{
color: #222222;
}
.td-footer-container .td_block_wrap .td_block_inner .entry-title.td-module-title a{
color: #222222;
}
.footer-social-wrap i {
color: black;
}
.td-footer-container .td-icon-mail-1:hover{
background-color: red !important;
}

Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newsmag’ is closed to new topics and replies.