problem with AJAX register checks and crosses show under text box
- simon.mellorclark
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
12 years 7 months ago #6566
by simon.mellorclark
Hi,
I'm having some difficulty with ...
www.greenwichnautica.es/index.php?option=com_user&task=register
The component installed fine and works great but the (1) the checks and crosses show underneath the text boxes and (2) the translations for Username Etc are so long that they're pushed onto two lines.
Any help would be really appreciated.
Thanks in advance.
I'm having some difficulty with ...
www.greenwichnautica.es/index.php?option=com_user&task=register
The component installed fine and works great but the (1) the checks and crosses show underneath the text boxes and (2) the translations for Username Etc are so long that they're pushed onto two lines.
Any help would be really appreciated.
Thanks in advance.
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
12 years 7 months ago #6567
by Saka
Emir Sakic
www.sakic.net
That's purely CSS issue where your template CSS is interfering with AJAX Register.
The problem is in www.greenwichnautica.es/templates/excite/css/template.css line 368 where label is floated left. Either remove it or add some code to www.greenwichnautica.es/components/com_a...ets/css/validate.css to cancel this foat, for example under line 65:
The problem is in www.greenwichnautica.es/templates/excite/css/template.css line 368 where label is floated left. Either remove it or add some code to www.greenwichnautica.es/components/com_a...ets/css/validate.css to cancel this foat, for example under line 65:
#josForm .msg {
float: none;
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.
- simon.mellorclark
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
12 years 7 months ago #6568
by simon.mellorclark
Thanks Saka
An enormous help! It's now resolved. Any idea how to get the titles onto one line?
An enormous help! It's now resolved. Any idea how to get the titles onto one line?
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
12 years 7 months ago #6569
by Saka
Emir Sakic
www.sakic.net
Same thing.
The problem is in www.greenwichnautica.es/templates/excite/css/template.css line 369 where label is set to width: 20%;.
Either remove it or add some code to www.greenwichnautica.es/components/com_a...ets/css/validate.css to increase the width, for example:
The problem is in www.greenwichnautica.es/templates/excite/css/template.css line 369 where label is set to width: 20%;.
Either remove it or add some code to www.greenwichnautica.es/components/com_a...ets/css/validate.css to increase the width, for example:
div.ar_left label {
width: 100% !important;
}
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.