No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
*Line 183 is missing a semi-colon at the end. [CODE] #content { width: 770px; padding: 0px; top:357px /* <-- missing semi-colon */ background-color: Gainsboro; /* gray */ } [/CODE] It seems to me you have also have quite a bit of unnecessary code. You can absolutely position the images without …
Not sure exactly what you need but I noticed you need to add spaces or your forms will be rendered wrong: [CODE] $form .= '<input type="text"' . 'name="credential"' . 'size="40">' . '<br/><br/>'; $form .= '<input name="submit2"' . 'type="submit"' . 'value="Submit" />'; [/CODE] Should be: [CODE] $form .= '<input type="text" ' …
The End.