Forums

Wierd display problem

amit2403 06 Oct, 2008
Hi.

Don't know if this is a bug or not but here is the problem:
I have the latest ChronoForms 3.0 stable version installed and working with Joomla 1.5.
I have made a contact us form as seen here:
http://vitruvian.funterz.com/index.php?option=com_chronocontact&chronoformname=ContactUs

Here you can see that the Upcoming Events is shown at the bottom. Instead it should be at the left (if you see on any other pages on the website).
Now, when I add the Submit/Reset buttons, I get this display error and without them I don't. But without the submit I cannot do anything with that form obviously..

Please help me out with this..

Thanks,
~Amit
Max_admin 06 Oct, 2008
Hi Amit, I see something odd in the buttons row, what if you created a quick other test form with a couple of boxes and buttons, and tried it, you get the same error ? please give it a test an let me know!

Cheers

Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
GreyHead 07 Oct, 2008
Hi amit2403,

I think that the problem with the first form is that the button row is inside a div with a class="clear" - the div should be closed before the button row opens.
<div class="clear"> 
    <div class="form_element cf_button">
        <input value="Submit" name="undefined" type="submit">
        <input value="Reset" type="reset">
    </div>
    <div class="clear"> </div>
</div>

should be:
<div class="clear"> </div>
<div class="form_element cf_button">
    <input value="Submit" name="undefined" type="submit">
    <input value="Reset" type="reset">
</div>
<div class="clear"> </div>

Bob
amit2403 07 Oct, 2008
Thanks for the help Bob. But that didn't work out.

I did what you said but it is still the same thing. (I moved back to the original code since this didn't work out)
Max_admin 07 Oct, 2008
Hi Amit,

Good, just as Bob mentioned, this is the problem, so, what if you created another form like the first one, you can do this in 1 or 2 minutes and see if this problem still exists ? let me know!

Cheers

Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
amit2403 08 Oct, 2008
Yes. When I created a new form they work..Thanks Bob and MAx for your help...
This topic is locked and no more replies can be posted.