The Box_grey style is broken out of the box...
The same issue affects Box_cleanslate.

first, there are two references to the style input.form-text. These can be consolidated as follows:

input.form-text {
border: solid 1px #ddd;
margin: 0;
padding: 0 5px;
font-size: 12px;
}

secondly, there is no reference to the style input.form-password. As a result the password box will often be invisible or a different color, and a larger font size, than the username input box. I added the following to fix this problem.

input.form-password {
border: solid 1px #ddd;
margin: 0;
padding: 0 5px;
font-size: 12px;
}

I have attached a patch which should fix this problem for both styles.

-rich

CommentFileSizeAuthor
cleanslate.stylecss.patch0 bytesoc

Comments

adrinux’s picture

Assigned: Unassigned » adrinux
Status: Active » Fixed

I did this instead:

input.form-text, input.form-password {
  border: solid 1px #ddd;
  margin: 0;
  padding: 0 5px;
  font-size: 12px;
}
oc’s picture

Thanks for this fix.

When/where will the updated template be available?

-rich

adrinux’s picture

It was committed to the 4.6 branch in cvs on the 9th, it should have made its way into the 4.6 version tarball by now (in other words you should get the modfied version if you download from the project page). Keep in mind that this wasn' the only change.

Anonymous’s picture

Status: Fixed » Closed (fixed)
dominic1025’s picture

how can i change the template of a content type??

i can only change the template of a content. I am newbie in drupal. Please help me.

Tnx!

adrinux’s picture

1. Try reading the theme developers guide http://drupal.org/theme-guide
2. Please make sure you have Drupal-6, not 4.6.
3. Please don't post random questions like this on ancient issues.