Hey guys,

How can I fix this?, when I'm looking at a node from a content type that has taxonomy in it, I see that the taxonomy fields are showing inline, while the other fields show in separate lines, for example:

Taxonomy Field1 Title: Value Taxonomy Field2 Title: Value NON Taxonomy field:
Value
NON Taxonomy Field:
Value

When it should look like this:

Taxonomy Field1 Title:
Value
Taxonomy Field2 Title:
Value
NON Taxonomy Field:
Value

Thanks.

CommentFileSizeAuthor
#1 after.png138.91 KBBhumikaVarshney
#1 before.png109.57 KBBhumikaVarshney
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

BhumikaVarshney’s picture

Status: Active » Needs review
FileSize
109.57 KB
138.91 KB

Hi,
The tags or Taxonomy Field are inline because display: inline css is added for the fields.
By adding small css you can show in the same layout as you required or you have described in the issue summary.

display: flex;
 flex-direction: column;

Attaching SS of both the instances after and before.
Hope it works for you!!

kunalkapoor’s picture

Status: Needs review » Fixed
kunalkapoor’s picture

Status: Fixed » Closed (fixed)