I've installed the contact form, and built another form using CCK. I have iTheme2. The labels are NOT showing up when I open the forms. cbdl-water.com.

Comments

TrudyD1474’s picture

I changed themes and on different themes the labels are there.

drake.elete’s picture

I just sent them an email about this problem and then searched Drupal for itheme2 and found this post. A quick fix (not sure if it's ok to modify theme, but..) is to modify the style.css inside of the /sites/all/themes/iTheme2/ directory. Change the ".form-item label { display: none; }" to "#search-theme-form .form-item label { display: none; }". The problem is that they disabled the search form data using the 1st css statement but .form-item is also used by the Contact form! I love this theme and hope they add drop down menu support in the future since it is a static layout! The theme also cuts off menu items on the "My Account" tab if you have to many!

ebitiba’s picture

All I did was change

/* search form */
.form-item label {
display: none;
}

to

/* search form */
.form-item label {
display: inline;
}

in the style.css

This worked for me across the whole site on all the form labels!!!