Community moderators have prevented the ability to post new answers.
I've tested it with Edge Chromium and Chrome and it works better than you show on the video, although not as expected. The left margin will always reduce a bit.
A few ways to work around the problem:
1. Using Confluence Source Editor (my favourite option) find and replace all the margin-left being applied to the table and replace it with the position you wish. To use it after installation basically you'll need to edit the page, click in <> button located on the top-right of the page and then use the Find and Replace boxes.
If you don't have this plug-in installed I'd recommend it because sometimes it's a real life saver.
2. If you are using a plug-in with a macro that will allow you to wrap the table in a container, such as a panelbox (e.g. Advanced Panelboxes for Confluence) or a div (e.g. Content Formatting Macros), you can define an ID for that container and then add in the Stylesheet page (Space Tools > Look and Feel) #container-id .confluenceTable { margin-left: 240px; }. If you have the Content Formatting you will have available a CSS macro that will allow you to directly apply the style in the page and not for the entire space.
3. Confluence's {panel} macro can work the same way as above but it doesn't allow us to define an ID. I think you can use it however if you are sure you wish to apply the same style to all tables inside a panel in a certain space. In the Stylesheet page enter something like [data-macro-name="panel"] .confluenceTable { margin-left: 240px; }
There are other ways but honestly I would go with the first I have added.
I hope it helps.
Cheers,
Vitor
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.