Hide a anchor tags text while setting a background image Hide a anchor tags text while setting a background image wordpress wordpress

Hide a anchor tags text while setting a background image


The classical hack for this is:

a { text-indent: -9999px; }

The problem about this particular solution is not too good for SEO. If you want something more reliable you can use white text on white backgorund, or this other hack:

a { font-size: 0; }


Use text-indent MDN docs and overflow:hidden.

shop a {    background-image:url('../images/shopFull.png');     width:209px;     height: 74px;     display:block;    text-indent:-9999px;    overflow:hidden;}