Contact Us Form doing strange things

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
7/22/2008 9:15:50 AM
Gravatar
Total Posts 72

Contact Us Form doing strange things

Hi

I created a page with a Contact Us module at the top and 2 html moduls underneath - all working fine until I pressed on the cogs next to the contact us module name to go and put an email address in where the contact us forms should be sent - as soon as I clicked Save, the contact us module disappeared from the contact us page I had set up to the Home Page and placed itself as the bottom most content.  It is gone completely from the contact us page I created and I need to add it again.

 

Another small thing - all admin pages where you can input information - you cannot see the text box - needs a border around it - is there one place for all the admin pages to add a border to the input boxes - can't find some of the input box css in any of the files.

Chris

 

 

7/22/2008 12:38:28 PM
Gravatar
Total Posts 18439

Re: Contact Us Form doing strange things

Hi Chris,

Are you running the newest 2.2.6.5 version? I think this issue about it dissapearing was fixed as discussed in this thread.

In the latest version the markup renders some classes on the text boxes which can be styled:

.smalltextbox { width: 4em; }
.normaltextbox { width: 10em; }
.mediumtextbox { width: 15em; }
.widetextbox { width: 25em; }
.verywidetextbox { width: 35em; }

However, even without those class names you can create css selectors to style text boxes. You could put borders on all of them like this:

input[type="text"] { border: solid thin black; }

or if you just want it on admin pages:

.admin input[type="text"] { border: solid thin black; }

Hope it helps,

Joe

7/23/2008 8:10:45 AM
Gravatar
Total Posts 72

Re: Contact Us Form doing strange things

Hi

I downloaded mojo about 3 weeks ago - would that be the latest version - if not how do I know what version I am currently running?

Chris

 

7/23/2008 8:21:11 AM
Gravatar
Total Posts 18439

Re: Contact Us Form doing strange things

Hi Chris,

You can find out your version under Administration Menu > System Information

I released the newest version 2.2.6.5 a few days ago but haven't made the release announcement yet.

Best,

Joe

7/23/2008 9:20:50 AM
Gravatar
Total Posts 72

Re: Contact Us Form doing strange things

Hi again- just found where you get the versions number under site settings in the admin.

My version is 2.2.5.8

When updating, what is the go here - do I have to update all the files again or do you have an update zip file with just the files.  The same problem happens with the links module so hopefully new version will sort that out to.

 

 

7/25/2008 4:47:30 AM
Gravatar
Total Posts 18439

Re: Contact Us Form doing strange things

There are note about upgrading here:

http://www.mojoportal.com/upgrading.aspx

Hope it helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.