Footer link colors have changed after reverting

Those aren't part of the footer.

You will still need to do manual edits for those.
If you apply the changes to EXTRA.css then they will continue to work after upgrading.

Code:
/* Change colour of the copyright text */
#copyright {
color: @dimmedTextColor !important;
}

/* Change colour of Terms and Rules */
#legal a:link, #legal a:visited {
color: @dimmedTextColor !important;
}
 
Code:
/* Change colour of the copyright text */
#copyright {
color: #FFFFFF !important;
}

/* Change colour of Terms and Rules */
#legal a:link, #legal a:visited {
color: #FFFFFF !important;
}
 
Those aren't part of the footer.

You will still need to do manual edits for those.
If you apply the changes to EXTRA.css then they will continue to work after upgrading.

Code:
/* Change colour of the copyright text */
#copyright {
color: @dimmedTextColor !important;
}

/* Change colour of Terms and Rules */
#legal a:link, #legal a:visited {
color: @dimmedTextColor !important;
}

Awesome. You are really helpful Brogan! :)
 
Those aren't part of the footer.

You will still need to do manual edits for those.
If you apply the changes to EXTRA.css then they will continue to work after upgrading.

Code:
/* Change colour of the copyright text */
#copyright {
color: @dimmedTextColor !important;
}

/* Change colour of Terms and Rules */
#legal a:link, #legal a:visited {
color: @dimmedTextColor !important;
}
I cannot for the life of me get my copyright color to change... I've tried several different combinations, including the exact code you posted, and it's not changing from the hardcoded rgb(100,100,100) that's in the footer.css template.
confused.png
Any ideas?
 
Hmm...I moved the #copyright part to the top of EXTRA.css and it worked, so I presume something in it was interfering with it... *digs through code* Thanks for your help!
 
Top Bottom