How to make menu text in footer orange

Posted in: Newsmag
Post count: 136

Hi,

I have a menu title “Small Caps Newsletter” in the bottom right on my website.

Currently it is in white, however I want it in #EC8003 (orange).
I’ve tried to code the change but am unable to do so.

Can you please help?

Website: smallcaps.com.au

Thanks

Post count: 23312

Hello WakeUpCallProject,

If you want to change this color, you should use the code below and place it in Theme panel->Custom CSS Area.

The code is ->

.td-sub-footer-container, .td-sub-footer-container a{
color:#EC8003!important;
}

The result is here -> https://www.screencast.com/t/TCWhjs2a

Thanks for your understanding!

Post count: 136

Thanks so much Catalin, it works perfect.
I probably should have said that when you hover the mouse over “SMALL CAPS NEWSLETTER” I want the text to go from #EC8003 to white.

Also need the text to the left in the footer “Copyright © 2017 Small Caps. All rights reserved.” to stay white as well. It changed to orange with the code you gave me.

Can you please help and send me the updated code?
🙂

Post count: 23312

Hello WakeUpCallProject,

Try the code below and place it in Theme panel->Cusotm CSS area.

The code is ->

#menu-australian-small-caps-asx a{
color:#EC8003!important;
}
#menu-australian-small-caps-asx a:hover{
color:white!important;
}

Thanks for the message!

Post count: 14

Hi,
How do change the subfooter background in css?

Post count: 22421

Hello,

You can add a background image in css to any container if you add the code properly. FOr the sub-footer you would use a similar code to this one:

.td-sub-footer-container{
background-image: url("add your image url here");
}

Thank you!

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