Site logo

Archived topic

how to position a custom hook where i want it?

18 replies · Started by Anonymous on May 11, 2015

Viewing posts 16–19 of 19

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???

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;
}

Perfect. Fixed!

Thank you!

No problem! :)

This archived topic is closed to new replies.