I'm trying to eliminate the tags section on a specific page in Drupal:
Despite my efforts, I can't seem to get rid of it within the supposed correct view:
view view-community view-id-community view-display-id-page view-dom-id-
Is there another way I can remove this unwanted section? I really need to say goodbye to those tags!
LATEST UPDATE
By adding the following line to styles.css file:
.view-community .views-field-name a {
display: none;
}
The content is hidden but it results in extra whitespace (where the tags were).
UPDATE 2
Adding the line into styles.css:
.view-id-community h3 {
display: none;
}
This code hides the <h3>
tag.
Therefore, the question that remains is:
How do I remove the excess whitespace now present where the tags previously existed?