Skip to main content
Nintex Community Menu Bar
Solved

Fixed Height for Parallel Groups

  • February 9, 2026
  • 2 replies
  • 24 views

Yhaizley RV
Forum|alt.badge.img+6

Hello,

I have a question. When I add two parallel groups, is it possible to assign them a fixed height so that their size is not affected by the content inside them?

I am attaching some images for reference.

 


 

 

Best answer by Yhaizley RV

Hello!

I have already completed this task and was able to resolve it by adding the following style.

 

/* Cartas - tamaño y sombra */

[dir] .ntx-group {

  width: 100%;

  height: 365px;

  overflow: visible;

  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);

  border-radius: 5px;

}


 

 

2 replies

Forum|alt.badge.img+4
  • Nintex Employee
  • February 17, 2026

hi ​@Yhaizley RV , 

One of the ways you can achieve this is by applying custom CSS to the form. Please refer to our help page which provides more context on how this can be achieved. 

 

 


Yhaizley RV
Forum|alt.badge.img+6
  • Author
  • Rookie
  • Answer
  • February 23, 2026

Hello!

I have already completed this task and was able to resolve it by adding the following style.

 

/* Cartas - tamaño y sombra */

[dir] .ntx-group {

  width: 100%;

  height: 365px;

  overflow: visible;

  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);

  border-radius: 5px;

}