• Hi ??

    The plugin seems to work fine, but the form appears in a window with scrollbars on the right, as you can see here:
    https://www.mediafire.com/imageview.php?quickkey=mzmmtn4zvzu&thumb=5

    Looking at the code of the page, there is an inline style for #smcf-container with an height value of 200px:

    element.style {
    height:200px;
    left:407.5px;
    position:fixed;
    top:15%;
    width:450px;
    z-index:1002;
    }

    If I change it to 100% using firebug, I get the full height. How can I solve?

    Thank you for your work and sharing!

Viewing 3 replies - 1 through 3 (of 3 total)
  • My guess is that there is some other styling effecting the content. Do you have a link to the actual site that I can view? You can email me directly, if you prefer: eric AT ericmmartin.com

    Thread Starter Aldo Latino

    (@aldolat)

    Thanks, Eric, for your very fast reply!

    I’m testing this plugin in a localhost environment: in this moment it’s impossible for you to take a look.

    Anyway, as I already wrote, consider that this style is an inline style. I paste here the opening div:

    <div id="smcf-container" class="simplemodal-container" style="position: fixed; z-index: 1002; height: 100px; width: 450px; left: 407.5px; top: 15%;">

    Strangely, now the height value is 100px and not 200px as in my previous post.

    I could solve using:

    #smcf-container {
    height:100% !important;
    }

    but !important is not seen by IE6.

    Could you make the height value to 100% in the code?

    thank you for the solution.

    same problem. used

    #smcf-container {
    height:100% !important;
    }

    to solve it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: SimpleModal Contact Form (SMCF)] The form appears in a window’ is closed to new replies.