Form.label problem

Work Site

It was just enter e-mail address not : Enter a valid e-mail address.

BEFORE:

By adding a word (two words) to the instructions, it caused the line to wrap and pushed the field down. The way your form is constructed, that is normal behavior; it is not broken.

What do you want the form to look like? What is supposed to be aligned with what? Please feel free to use your favorite graphics program to create a picture of how you want it to look so we do not have to guess.

I want it to look like this:

Is it in this line?

#contact ul li.msgname {
    float: left;
    margin-right: 20px;
}

You want the text to extend past the field to the right edge of the graphic box or beyond.

Do this:

#right #container {
    height: 540px;
    margin: 20px 0 20px 20px;  /* CHANGE ME to this*/
    overflow: hidden;
/*    width: 340px;   /* DELETE Me or Comment Out */
}

Not much to work with. Good luck.

#right #container {
        margin: 20px 0 20px 20px;
        /* width: 340px; */
        height: 540px;
        overflow: hidden;
    }

I’ve tried and it’s not working

Change the right margin on “#contact ul li.msgname” to 10px.

Really crappy solution You only have so much space on this fixed width website. As Ron said, we only have so much to work with.

Perhaps a better error message would be “Invalid E-mail Address”

1 Like

Thank you so much guys!!!

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.