• Resolved lxxxxxxl

    (@lxxxxxxl)


    Hi! Do you know how to disable list icon from collpase mode? I tried to find and match this in inspect mode in browser but it doesnt work?
    And second thing maybe is possible in CSS to set diffrent size of font in header row for mobile version?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Do you mean the “+” icon in the first column? To hide that, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .tablepress-id-123 .column-1:before {
    	display: none !important;
    }
    .tablepress-id-123 .column-1 {
    	padding-left: 8px !important;
    }

    To set a different font size for the headers on mobile view, you can use

    @media screen and (max-width: 768px) {
      .tablepress-id-123 thead th {
        font-size: 16px;
      }
    }

    In both cases, change the 123 to the correct table ID.

    Regards,
    Tobias

    Thread Starter lxxxxxxl

    (@lxxxxxxl)

    I mean this icons https://imgur.com/a/vOvGnxy . How to disable them? I know that icon is in theme but when I remove that icons list form theme it will be still “default dot”. How to disable it?

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    ah, now I see what you mean. These are indeed added by your theme. Can you please post a link to the page with the table where this problem happens, so that I can take a direct look? Thanks!

    Regards,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘List icon disable in collapse mode?’ is closed to new replies.