• Resolved sonia658

    (@sonia658)


    Hi,

    I’ve inserted some copyright text in the footer of my site, but it’s not visible on all devices/browsers.

    It shows up when I use Google Chrome, Microsoft Edge and Safari, but not on IE. Anyone know how to fix this?

    Thanks!
    Sonia

Viewing 7 replies - 1 through 7 (of 7 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Please provide a link to your site so we can take a look directly.

    Also, please specify what version of IE you’ve tested.

    Thanks!

    Thread Starter sonia658

    (@sonia658)

    Here’s the link

    I’ve tested this on version 11.

    Thank you
    Sonia

    Hi Sonia,

    As a test, could you please remove the visibility: hidden; rule from your custom CSS and then let me know if the credit is then visible in Internet Explorer 11?

    .site-info {
        visibility: hidden;
        height: 5px;
    }

    If the credit is visible after removing that rule, then the issue is with Internet Explorer using that rule for all elements with the .site-info container. We can then find another way to hide the credit to WordPress.

    Let me know if my hunch is right and I can then help from there!

    Thread Starter sonia658

    (@sonia658)

    Hi Siobhan,

    Thanks for a quick reply.

    Your hunch is spot on. The text is visible on IE 11 now. Just need to hide the WordPress credit…

    Thanks for testing that, Sonia!

    Could you give the following CSS a try in its place? It should only make the credit to WordPress transparent and make the custom credit you added white:

    .site-info, .site-info a {
        color: transparent;
    }
    
    .site-info:before {
        color: #fff;
    }

    Let me know if it works out!

    Thread Starter sonia658

    (@sonia658)

    It works Siobhan.

    Thank you!

    I’m glad to hear that! 🙂

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Footer Text Visibility’ is closed to new replies.