Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

Forums Directory Table Font Bug (BP 1.5.3.1) (5 posts)

Started 3 months, 2 weeks ago by: FIQ

  • Profile picture of FIQ FIQ said 3 months, 2 weeks ago:

    When increasing the body font to 16px or more it causes the table to shrink. Here are some screen grabs from http://testbp.org recreating it using Firebug:

    Normal 12px.

    http://i.imgur.com/Lfu3x.jpg

    At 15px everything still fine:

    http://i.imgur.com/H6hbV.jpg

    Then at 16px madness ensues:

    http://i.imgur.com/ThHA9.jpg

    It does not shrink anymore at larger fonts like 20px:

    http://i.imgur.com/UieW4.jpg

  • Profile picture of FIQ FIQ said 3 months, 2 weeks ago:

    When I add this to the css it seems to fix the issue.

    table {
      display: inline-block;
    }

    Just wondering if someone can confirm this.

  • Profile picture of r-a-y r-a-y said 3 months, 2 weeks ago:

    Hi FIQ, you might want to post this as a bug on BP Trac:

    http://buddypress.trac.wordpress.org/newticket/

    Login with the same credentials you use here on bp.org.

  • Profile picture of Paul Gibbs Paul Gibbs said 3 months, 2 weeks ago:

    Would rather figure out why it breaks as-is before doing something drastic like changing display of all the tables. :)

  • Profile picture of FIQ FIQ said 3 months, 1 week ago:

    The problem seems to be with the pagination above it. Adding this solves the issue.

    div.pagination {
      overflow: hidden;
    }

    Not sure if the fix will cause other issues.