Quote Originally Posted by flax View Post
Thanks again for this template which is great.

I've a problem with the create account page.
The zip code field (and this field only) aligns to the right instead of being under the text like all other fields.
See: http://www.skipros.eu/index.php?main...create_account

This happens only since I modified the template to have no sideboxes.
More precisely when I paste the following into stylesheet.css:
#centerColumnWrapper2 {
background:#ffffff!important;
}

.centerColumn {
float:left!important;
width:95%!important;
}

May be I'm not pasting it in the right position as I do not know CSS as I should.
(Note: I've enabled grey)
Can you help me?
Change:
Code:
LABEL.inputLabel {
	width:85%;
	float:left;
	margin:0.3em 0;
	}
to:
Code:
LABEL.inputLabel {
	width:95%;
	float:left;
	margin:0.3em 0;
	}