Feature requested
The delete selected, tag selected, reset view and export date buttons at bottom of bank screen as well as across the top
Typical use case
This would be helpful for all users when tagging items in the bank and would save the need for having to scroll back to the top of the screen each time
How I would expect it to work
When tagging lots of items you tick each one you want to tag on the screen taking you to the bottom of the screen. Once this has been done you then have to scroll all the way back to the top to tag etc. It would just save a few minutes when reconciling the accounts
If you have a power user subscription you can set the following in your global CSS:
.tblsubbuttons {
position: sticky;
top: 0;
background-color: #f9f9f9;
z-index: 1000;
}
This will make it so that when you scroll down the page, instead of the buttons scrolling off the top of the screen they will stay floating over the transaction list. If you want the same trick to work for the buttons at the top of the lists of sales & purchase invoices then just make it
.tblheadsubbuttons, .tblsubbuttons {
as the same thing uses a different class name on these pages.
Thanks Ian but where do I find the global CSS
Account settings → design customisation, there’s a link to advanced CSS and HTML customisation at the bottom of the page.
Note as per the support article, the first time you activate the global CSS you need to log out and back in again and possibly force your browser to hard-refresh the page.