Need background color for registration box

Attachment 37609

Hi, Currently there is no background color for the registration box.
How to change the color or put an image in the registration box?

Appreciate any helps.

3 answers

Profile photo of chavan 100.00 $tone June 16, 2014
Public

Go to this File: /skin/frontend/default/jm_crafts/css/styles.css

Add this code and change #FF0000 to any color code you want.

Code:

.customer-account-create .fieldset{
    background: #FF0000 ;   border: 1px solid #FF0000 ;


}
#1
Profile photo of Ziven Staff 100280.00 $tone June 16, 2014
Public

Please go to the file : http://jm-crafts.demo.joomlart.com/s…css/styles.css

On line 1456, you can change background and border for all boxes.

Code:

.fieldset {
  background: #FFFFFF
  border: 1px solid #E5E5E5
  border-radius: 5px;
  margin: 25px 0 15px;
  padding: 20px 15px;
}

If you want to change only registration box, please add new rule:

Code:

.account-create .fieldset {
  background: #FFFFFF
  border: 1px solid #E5E5E5
  border-radius: 5px;
  margin: 25px 0 15px;
  padding: 20px 15px;
}
#2

This question is now closed

Written By

Comments