I'm implementing jquery's tablesorter. I need to change the sorting arrows position with respect to the title of the column.
Here is what I've done so far:
table.tablesorter thead tr .header {
background-image: url(bg.gif);
background-repeat: no-repeat;
background-position: 80% 70%;
cursor: pointer;
}
This works fine for a column but not for the others where they overlap the title or go far to the right.
Is there a way to keep the arrows always show very next to the column title?