Jump to content

[solved] Color Changes


Recommended Posts

Which line do I change?

 

 

#create-account_form, #authentication #login_form {

clear: none;

float: left;

height: 20em;

width: 49%;

 

}

#create-account_form {margin-right: 11px;}

 

#authentication #create-account_form fieldset,

#authentication #login_form fieldset {

height: 200px

}

 

#authentication #create-account_form .form_content,

#authentication #login_form .form_content {

padding:15px 10px

}

 

#create-account_form h3,

#authentication #login_form h3 {

padding:8px;

border-bottom:1px solid #ccc;

font-weight:bold;

font-size:12px;

color:#333;

text-transform:uppercase;

background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898

}

#create-account_form h4 {

padding-bottom:22px;

font-size:11px;

color:#67afeb

}

 

#create-account_form label,

#login_form label {

display:inline-block;

width:110px;

color:#67afeb

}

 

#order-opc #login_form_content label {

display:block;

margin:0 0 10px 0

}

 

#create-account_form #email_create,

#login_form #email,

#login_form #passwd,

#login_form #login_email,

#login_form #login_passwd {

padding:0 5px;

height:20px;

width:220px;/* 230 */

border:1px solid #ccc;

color:#333;

background:url(../img/bg_discount_name.png) repeat-x 0 0 #fff

}

 

#create-account_form #SubmitCreate,

#login_form #SubmitLogin {

float:right

}

 

.lost_password {

float:left;

width:200px

}

.lost_password a {color:#67afeb}

 

#order-opc .lost_password {

display:block;

float:none;

margin:5px 0 10px;

width:auto;

font-size:11px;

color:#67afeb

}

 

#ordermsg p {padding-bottom:0}

#ordermsg p.txt {

float:left;

margin-right:25px;

width:220px

}

/*#ordermsg .textarea {float:right}*/

#ordermsg .textarea textarea {

height:90px;

width:475px;

border:1px solid #ccc

Link to comment
Share on other sites

Change #authentication #login_form fieldset in the global.css file located in ..themes/yourtheme/css.

add background:#fff as below, or just copy and paste to your global.css line 916.

If you type in the line yourself be sure and add the ; semi-colon after the line above.

 

 

#authentication #login_form fieldset {

height: 200px;

background:#fff

}

Link to comment
Share on other sites

... #login_form #login_passwd {

padding:0 5px;

height:20px;

width:220px;/* 230 */

border:1px solid #333;

color:#333;

background:url(../img/bg_discount_name.png) repeat-x 0 0 #fff

}

 

 

change last parameter (#fff) and enter color value axactly as you want

Link to comment
Share on other sites

are you sure? I checked your website, i still see wrong code there

 

 

#create-account_form #email_create,

#login_form #email,

#login_form #passwd,

#login_form #login_email,

#login_form #login_passwd {

padding:0 5px;

height:20px;

width:220px;/* 230 */

border:1px solid #333;

color:#333;

background: red;

}

try with this one, when i change background parameter it works perfectly

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...