Hi all,
I'm opening my webstore with ZenCart, everything is fine except this problem :
I would like to place this box close to the words, I checked all the files and the zen_draw_radio_field are always in the good place.
Thanks per advance,
Nicolas.
Hi all,
I'm opening my webstore with ZenCart, everything is fine except this problem :
I would like to place this box close to the words, I checked all the files and the zen_draw_radio_field are always in the good place.
Thanks per advance,
Nicolas.
There is no link to site so we can't try to fix the problem when we can't see the live site. I would be shocked if someone knows the solution on top of their hand as this isn't the normal way Zen Cart display these buttons.
Can you post a direct link to your css or the page its on. I would just play with the form css alighment in IE and Firefox to get the alignment correct. Its obviously an issue with that.
Hi,
I'm sorry, here is the adress : http://www.allochasse.com/index.php or direct link : http://www.allochasse.com/index.php?...create_account
Anyone can help me please ?
That doesn't look like something that's fixable using the stylesheet. It looks like a coding blunder by Template Monster, so you might ask them.
If TM provided a tpl_modules_create_account.php file in your includes/templates/theme224/templates folder, you might try removing that file temporarily to let the default take over and see if it's fixed.
It can be covered up using the stylesheet, but it would be better to find out why the radiobuttons are skipping past the labels.This also fixes a standard-issue misalignment between checkboxes/radiobuttons and their labels (moving the labels up 0.3em).Code:#gender-male+label {position: relative; left: -1.3em; bottom: 0.3em;} #gender-female {position: relative; left: 3.5em;} #gender-female+label {position: relative; bottom: 0.3em;} #newsletter-checkbox+label {position: relative; bottom: 0.3em;} #email-format-html+label {position: relative; left: -1.3em; bottom: 0.3em;} #email-format-text {position: relative; left: 4.5em;} #email-format-text+label {position: relative; bottom: 0.3em;}
Hi,
Finaly I found the problem :
L 17 stylesheet.css :
I delete the float:left;
Last edited by niko62; 5 Aug 2010 at 01:05 PM.