Adding a title to the "Add new record" + sign

When a user has the option to add a new record a little "+" sign appears next to the relevant field. Is there any way of adding a description, or title for that "+" sign?

Works like a charm.

Thanks very much for your help, Dan.

Hi,

Oh OK, you could use the below then style to suit:

$(document).on('knack-view-render.view_38', function(event, view, data) {
$("div#kn-input-field_69 > a.kn-add-option > span").text(" Add a New Company");
});

Then maybe something like this in your CSS to stop underlining the text/icon and set the colour for normal and hovered to match your icon colour:

a.kn-add-option:hover {
text-decoration: none !important;
}


a.kn-add-option > span {
color: #aaa;
}


a.kn-add-option:hover > span {
color: #074376;
}

Thanks

Dan

Thanks Dan

That displays a text while hovering over the "Plus" icon which certainly helps.

Is there any way of replacing the "Plus" icon with specific text, or adding text next to the plus icon?

Thanks

Hi,

Add this in your javascript changing the "view_38" and ""field_69" to your value.

And then of course change the "Add a New Company" text to what you want.

$(document).on('knack-view-render.view_38', function(event, view, data) {
$("div#kn-input-field_69 > a.kn-add-option").attr("title", "Add a New Company");
});

Thanks

Dan