Products > AJAX series
problem with AJAX register checks and crosses show under text box
(1/1)
simon.mellorclark:
Hi,
I'm having some difficulty with ...
http://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.
Saka:
That's purely CSS issue where your template CSS is interfering with AJAX Register.
The problem is in http://www.greenwichnautica.es/templates/excite/css/template.css line 368 where label is floated left. Either remove it or add some code to http://www.greenwichnautica.es/components/com_ajaxregister/assets/css/validate.css to cancel this foat, for example under line 65:
--- Code: ---
#josForm .msg {
float: none;
--- End code ---
simon.mellorclark:
Thanks Saka
An enormous help! It's now resolved. Any idea how to get the titles onto one line?
Saka:
Same thing.
The problem is in http://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 http://www.greenwichnautica.es/components/com_ajaxregister/assets/css/validate.css to increase the width, for example:
--- Code: ---
div.ar_left label {
width: 100% !important;
}
--- End code ---
Navigation
[0] Message Index
Go to full version