Input/Entry Boxes - X displaying
July 14, 2013 12:00 AM
Hi,
I am getting an "X" displaying in all my Input/Entry boxes. This allows me to clear the contents of the box. Is there a way to disable this?
Thanks,
Mark
Discussion (4)
It can be done easily
Create an html extension: Insert ribbon -> Add Web Object group -> html extension
Set the type to "meta tags"
Click edit and enter the following:
Click on the input field -> Properties ribbon -> Appearance gruop -> the small arrow in the bottom right corner
Enter the class name: no_x
You can use the class for more than one entry field, by just adding the class name to each field. Just be aware that the html extension has to be on title level if you want to use it on several pages.
Tim
It can be disabled by defining a CSS class for the input field.
.classname ::-ms-clear {
display: none;
}
Tim
Thanks! I've not defined a CSS form before for an input box... can you tell me how to do that? is it an easy process?
Discussions have been disabled for this post