Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter gidil

    (@gidil)

    by the way i try this one :

    .tablepress-id-1 .column-1 {
    width: 100px;
    }

    this work for make width larger on chrome , but on firefox make it tooo larger again,

    thx

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    The reason for this is likely that Chrome and Firefox use different methods to calculate a good width for this table.
    To find out more details, and to make suggestions on how to adjust this, I’d however need to take a direct look at the table.
    Could you therefore please post a link to the page with the table? Thanks!

    Regards,
    Tobias

    Thread Starter gidil

    (@gidil)

    Obias thx for your fast response
    I’m sorry I use this on localhost using wamp

    Btw, if I use more than 2 columns ,both firefox and chrome work fine
    Just if 2 coloumn on firefox give large width coloumn

    Regards

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    ah, ok. That’s unfortunate.

    I then recommend to set the width explicitely, with a higher priority. Maybe that helps:

    .tablepress-id-1 .column-1 {
      width: 20% !important;
    }
    .tablepress-id-1 .column-2 {
      width: 80% !important;
    }

    If that also does not help, we’ll need to look at this after the site is available on the net and not just locally.

    Regards,
    Tobias

    Thread Starter gidil

    (@gidil)

    WORKED LIKE A CHARM !
    great plugin with great author 😀
    thank you very much ,

    nb: i change width with 1% and i got what i want 😀

    .tablepress-id-1 .column-1 {
    width: 1% !important;
    }
    .tablepress-id-1 .column-2 {
    width: 80% !important;
    }

    again, thank you very much !

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    very nice that this helped! Yes, tweaking those values might be necessary.
    So, good to hear that you could fix this 🙂

    Best wishes,
    Tobias

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Width not correctly on firefox browser’ is closed to new replies.