Public form - Remove Nice Edit from Paragraph text

0

Hello,

I have a public form on my site with one field "Address" as a paragragh text column type. Is it possible to remove the Nice Edit buttons from this on the public form side only?

Thank you,

Alan

asked Sep 1 '10 at 3:44

inspiration

7

add comment
enter at least 15 characters

2 Answers

2

You can just hide it with css:

 .nicEdit-panel {display: none; }

Or remove it with jQuery on load

$('. nicEdit-panel').remove();

answered Sep 2 '10 at 11:36

wesbos

56

add comment
enter at least 15 characters
0

Thank you wesbos

answered Sep 8 '10 at 9:25

inspiration

7

add comment
enter at least 15 characters