[Resolved] how to position a custom hook where i want it?

Home Forums Support [Resolved] how to position a custom hook where i want it?

Home Forums Support how to position a custom hook where i want it?

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #117747
    Chris

    FYI, It’s also displaying a thin border on the table which was not showing before. I’ve used “border=0” setting from the start. ๐Ÿ™‚

    Puzzling???

    #117749
    Tom
    Lead Developer
    Lead Developer

    Sorry about that – the table thing is a bug which has been addressed in the next version.

    The border thing is here to stay – tables should technically be used for anything other than tabular data.

    You can fix both by adding this custom CSS:

    table {
          table-layout: auto;
    }
    
    table, th, td {
        border: 0;
    }
    #117755
    Chris

    Perfect. Fixed!

    Thank you!

    #117759
    Tom
    Lead Developer
    Lead Developer

    No problem! ๐Ÿ™‚

Viewing 4 posts - 16 through 19 (of 19 total)
  • You must be logged in to reply to this topic.