2graphic
Forum Replies Created
-
Forum: Plugins
In reply to: [Slideshow] ability to choose image sizeLook forward to seeing this feature soon. Being able to choose from a list of the themes available image sizes will allow this plugin to work with various watermark plugins where the watermark only appears on the resized versions.
The new external amendments are working great for me so thanks for that.
With regards to the DIV ids: the extra DIVs aren’t necessary in order to target elements with CSS style rules, perhaps they’re there for the internal version or backwards compatibility. If not:
<div class="fscf-row"> <label for="si_contact_name1">Your name:<span class="fscf-required-indicator">*</span></label> <input type="text" id="si_contact_name1" name="full_name" value="" size="39" /> </div>
should suffice, then target with:
.fscf-row label {} /* all labels in row divs */ .fscf-row input {} /* all inputs in row divs */ .fscf-row input[type="text"] {} /* all inputs of type text */ .fscf-row input[type="submit"] {} /* the submit button */ .fscf-row input#si_contact_name1 {} /* the input with a specific ID */ .fscf-row label[for="something"] {} /* a specific label */
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Can't remove inline stylesThanks for taking the time to reply Mike. Yes, an option to use styles from an external style sheet and not add the inline styles is what I’d like. I realise you’ll need to keep the inline css option for backwards compatibility. Hope you can add this in due course. Cheers.
Forum: Plugins
In reply to: [N-Media Website Contact Form with File Upload] Problem upload from devicesI was looking at using this plugin but the upload uses Flash which isn’t supported on iPhone/iPad and some Android devices. Deal breaker for me. If it was HTML5 this would be an awesome plugin.