centinel3
Forum Replies Created
-
Forum: Plugins
In reply to: [Live Edit] Multisite Functionality?+1 for this feature. This plugin is great, and want to use it on a multisite I’m setting up. Any way this can work with multisite setups? -Chris
Note: Appears to be working on multisites. I didn’t see the edit link at the top right of the website. Cheers!
I have tried various ways to get that ‘watermark’ to work and nothing seems to work properly. javascript is turned on.
You can have a default value disappear when a user clicks in the box. Look at any common search field that displays ‘search’ in teh text area. When you click into it you don’t ahve to remove the text, it just disappears.
The code below will do exactly what I’m looking to do with Contact Form 7, thoguh am not sure where to implement this in the template itself. Any help would be appreciated.
<input type="text" name="ea" id="ea" size="20" value="Enter E-mail Address" onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;" />