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!
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!
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!