Frage

Is there a way to shorten a form field? Here is an example of what I have:

form field example

These are text fields that will have a maximum of 6 characters in each box. I want to make them smaller so they don't stretch across the page and take up room.

War es hilfreich?

Lösung

All the textboxes have a css class ms-long and this class has a width property fixed to 386px. If you want to update the css for specific textboxes you can write JavaScript/jQuery.

Example:

$("input[id^=CustomTextBox]").removeClass("ms-long").css("width","50px")

The CustomTextBox is my field name.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top