Hello,

As the title says the footer message or any links added down there have the same colour as the background and is impossible to make out. Can someone please assist me with a bit of css help so I can change it?

Thanks in advance!
H

Comments

gluetown’s picture

Issue tags: +CSS, +footer, +footer links

I was having the same trouble with a different theme. After hours of searching the web, I found the answer in the template's css file itself. The header had a different color link from the rest of the body, so I just mimicked that code in the footer and found that adding this worked for me:

#footer a{
  color: white;
  text-decoration: none;
}

To change the hover display behavior, I needed to add this as well:

#footer a:hover {
  color: #5493ff;
  text-decoration: underline;
}

I'm no CSS guru (obviously) and don't know how correct or appropriate that is in terms of W3C, best practices, etc., but that's working for me :)

HS’s picture

Status: Active » Fixed

gluetown,

Thanks a ton for taking the time to leave that response. It did the trick!

Status: Fixed » Closed (fixed)
Issue tags: -CSS, -footer, -footer links

Automatically closed -- issue fixed for 2 weeks with no activity.