Removing extra adverts from "My Dashboard"

Underneath the main headings

[My Dashboard/Sales/Purchases/Banking/Reports/Account Settings/Help]

appears “New! Year End Accounts Service from £125.00 - Click here to get started!” (accountname??.quickfile.co.uk/yearend/compare)

How is it possible to hide this message?

Similar position for “Need help with your accounting?” pop-up box - top right-hand side.

Can this be hidden?

Hi @alan_mcbrien

Adding a bit of custom CSS should hide this for you:

#headerbanner, .findAnAccountant {
    display: none;
}

tried this in both Global CSS and Custom Scripts - did not make any difference, so removed the script.

Any other suggestions?

That’s a bit odd. I’ve tried it on my test account and it worked all OK.

If you have other CSS that could be interfering, it may be worth trying this instead:

#headerbanner, .findAnAccountant {
    display: none !important;
}

Also try logging out and back in + hard refresh, it may be a caching issue.

tried the above - no change

first option: Red Flag for next line in the CSS

#headerbanner, .findAnAccountant {
    display: none;
}

second option: Two red flags

#headerbanner, .findAnAccountant {
    display: none !important;
}

I believe you added them to the “Custom Scripts” file (which is for Javascript) whereas you need these rules defined in “Global CSS”.

Thank you, that fixed it.

1 Like

This topic was automatically closed after 6 days. New replies are no longer allowed.