• Resolved Sam L.

    (@scionet)


    Hello. Apologies if this issue was already addressed, I searched the forum and could not find this issue.

    I have a number of columns that are sortable. I would like to retain the sort feature, but remove the odd looking up down arrows. Is this accomplishable? If so, please advise.

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    For this, the best approach is to use CSS code. For example, add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .tablepress-id-123 thead .column-1:after,
    .tablepress-id-123 thead .column-4:after,
    .tablepress-id-123 thead .column-7:after {
    	display: none;
    }

    Just change the table ID and column numbers as desired.

    Regards,
    Tobias

    Thread Starter Sam L.

    (@scionet)

    Great, that works. But, do you have a suggestion for writing it to apply to all columns at once. Such as:

    .tablepress thead .columns:after {
    display: none;
    }

    Thank you.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    sure:

    .tablepress-id-123 thead th:after {
      display: none;
    }

    Regards,
    Tobias

    Thread Starter Sam L.

    (@scionet)

    Thank you very much!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sorting Arrows’ is closed to new replies.