Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Look 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 */

    Thread Starter 2graphic

    (@2graphic)

    Thanks 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.

    I 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.

Viewing 4 replies - 1 through 4 (of 4 total)