Jump to content

Editing Tables


pdurber

Recommended Posts

I'm trying to use the "Table" widget to layout some pages for a colleague.

One created, can I get into the table properties to turn off the borders? If I insert a table inside the table it lets me choos, but just using the table widget I don't seam to be able to get to the properties.

  • Like 1
Link to comment
Share on other sites

Sorry @pdurber - even though you wrote the Table widget, I still read it as the Table option in the Text widget.  

In all honesty, the Text widget's version is more flexible than the table widget and you can still paste tables from Word directly into it.

To force the Table widget's borders to be hidden, you'll need to use CSS in an HTML widget:

<style>
    .widget_table .table-cell {
        border: 0px !important;
        
    }
</style>

This was make all Table widget borders hidden.  This one below would control just the current widget, but you need to use Inspect in the browser to identify the widget UUID

<style>
  div[data-content-uuid="UUID"] .widget_table .table-cell {
    border: 0px !important; 
  }
</style>  

 

  • Thanks 1
Link to comment
Share on other sites

No worries.

The only issue with using the table option in the text widget is that it behaves a bit erratically on mobile devices, and is irritating to fill in edit mode, whereas the table widget is far better behaved.

I'm guessing that by"all table widget borders" you mean on that page?

Thanks for the pointer above.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...