Remove Country from estimates & invoice?

similar to previous comments to help remove the Country from my Estimates/Invoices. I’m on the free package and can’t seem to access CSS to remove the country from my estimates / invoices. I’m not based in the UK and I know the system is made for UK companies. Is there any work around for this?
Additionally, when I hide my company details, the client details remain the middle of the invoice, which looks really weird and amateur. Anyway this client details can be right or left aligned on Estimates/Invoices

Otherwise I’ll need to dump this software.
thanks
Chris

Hello Chris

You can hide the country from your company address by

  • Previewing the invoice.
  • Select Invoice style gallery at the top
  • Select your template and “Customise this style”
  • Add in the following code to the CSS editor(as shown below)
  • Apply and Save

.invSenderCountry{
display:none;
}

You can align client address to the left by

  • Previewing the invoice.
  • Select Invoice style gallery at the top
  • Select your template and “Customise this style”
  • Add in the following code to the CSS editor(as shown below)
  • Apply and Save

.recipientAddressDetails {
height:100px;
position:static;
text-align:left;
vertical-align:top;
margin-bottom:15px;
padding-left:20px;
}
You can tweak the values for better alignment

Tip - look at the CSS of other designs and you can copy/paste the code into your design

If the .senderAddressDetails class is listed in the address details section you may need to delete it out
(I would recommend giving the design a new name at the top of the CSS editor)

that’s great thank you Steve.
Cheers

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