Advertisement
BakerMan

TEC Widget Nav Span

Sep 12th, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. /* This is the relevant CSS rule, however
  2.  * it isn't hiding the link as we would
  3.  * normally expect.
  4.  */
  5. .tribe-events-widget-nav a span {
  6.         text-indent:-9999px;
  7.         color: transparent;
  8.         text-transform: capitalize;
  9. }
  10.  
  11. /* Can you try amending it to the following?
  12.  */
  13. .tribe-events-widget-nav a span {
  14.         display: none;
  15.         text-indent:-9999px;
  16.         color: transparent;
  17.         text-transform: capitalize;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement