php - Drupal 6: CCK field is being hidden -


I am trying to add custom fields to a custom content type, everything is fine, but new fields are displayed Although it is not HTML with display: none; Appears in attributes, new exhibits are not displayed.

What is the problem here

Used to hide other CCK area somewhere?

It seems that the CSS rule meant to hide another CCK area, but it was not very specific and now it is by mistake to hide the field that you want to see. For example, if you have a CSS rule:

  div.field {display: none; }   

Hiding a different area means it will hide all your CCK areas. (It can not be at all div.field )

Comments