NetTalk Central

Author Topic: Cosmetics on a NT form  (Read 574 times)

Poul Jensen

  • Full Member
  • ***
  • Posts: 186
    • View Profile
    • Email
Cosmetics on a NT form
« on: January 11, 2024, 01:38:36 PM »
Hi,

Any setting that can:
- Remove the tab on top of form
- Left align the prompts

tia
/Poul


Niels Larsen

  • Sr. Member
  • ****
  • Posts: 420
    • View Profile
    • Email
Re: Cosmetics on a NT form
« Reply #1 on: January 11, 2024, 09:59:40 PM »
Hi Poul

On your NetWebForm template under fields you can set the tab style to "None"

CSS is your friend. Add this class to your custom.css:

Code: [Select]
.nt-prompt > label {
    float: left;
}

This means that all "labels" under DIVs with the class "nt-prompt" will be affected by this new class - the label will be moved to the left.
Remember to gZipAll and refresh your browser's cache.

/Niels

Poul Jensen

  • Full Member
  • ***
  • Posts: 186
    • View Profile
    • Email
Re: Cosmetics on a NT form
« Reply #2 on: January 11, 2024, 10:41:27 PM »
Thanks Niels,

Much appreciated.

/Poul