7

I would like to add arrows to my sortable table on this page

What I tried is adding this code to the css:

table th.headerSortUp:after {
   content: " ↑";
}

table th.headerSortDown:after {
   content: " ↓";
}

But that will not display the arrows "↑" and "↓" but the html-entities instead: "↑" and "↓"

or even better would be the up- and downward arrow I found here: http://graphemica.com/search?q=ARROW+TO+BAR

rubo77
  • 17,707
  • 27
  • 124
  • 213

1 Answers1

10

try using theirs unicode positions instead

table th.headerSortUp:after {
   content: " \2191";
}

table th.headerSortDown:after {
   content: " \2193";
}

table th:after {
   color: #123456;
}

See http://www.blooberry.com/indexdot/html/tagpages/entities/arrow.htm for other arrow symbols.

Fabrizio Calderan
  • 115,126
  • 25
  • 163
  • 167