Footer text looks doubled

Hello,

My text in the bottom footer looks doubled.

I’m using a custom footer color css. The double text happens with or without using this css code below though. Its just more noticeable with the dark footer color. How do I fix this?

www.kevinagent.com

Current code used below:

/footer bg color/
footer.x-colophon.top,
footer.x-colophon.bottom {
background-color: #282828;
}

Hi there,

That is because of the text shadow that is added by the default theme CSS.

Please add this CSS to get rid of it:

.widget {
    text-shadow: none;
}

Please make sure to clear the cache of your site after saving.

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.