Hi

I added a Date field in my user registration page with a field label "Date of Birth". But this label is not appearing in Bold letters like other field labels. I am using Drupal 7.15 (Drupal Commerce distribution) and running SQL Server database. PHP version is 5.3. I have attached the marked page image with error (see circled portion in red). Please help.

CommentFileSizeAuthor
date_field_error.jpg100.51 KBsyam.mohan.vs

Comments

syam.mohan.vs’s picture

Another issue - the date field value below the label has a padding compared to rest of the fields values (See the image attachment in the previous post). This can be fixed by

1. Go to"\sites\all\modules\date\date_api" and then open date.css file.

2. Change this section

/* The exposed Views form doesn't need some of these styles */
.container-inline-date .date-padding {
padding: 10px;
float: left;
}

to

/* The exposed Views form doesn't need some of these styles */
.container-inline-date .date-padding {
padding: 0px;
float: left;
}

Hurray !!!

syam.mohan.vs’s picture

Another Issue - Red star marker not appearing against label in other fields. This can be fixed by applying a patch file mentioned at #12 of http://drupal.org/node/1248786.

I applied the patch manually by using the info at http://drupal.org/node/534548 as a guide.

Hurray !!!

syam.mohan.vs’s picture

Even after playing around with the date module css files am not able to make the date field label bold. Please help.

nerdoc’s picture

I would increase the priority as it renders a simple form VERY badly in sense of good look&feel. This IMHO is a major issue.

odisei’s picture

Issue summary: View changes

Is there any progress on this issue?