Skip to main content
Nintex Community Menu Bar
Question

Is it possible to wrap the icons in the first row of a table?

  • July 10, 2024
  • 1 reply
  • 5 views

Forum|alt.badge.img+8

I’m trying to do this with CSS, but there seems to be a element style that overrides whatever I try to do.  

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+5
  • July 10, 2024

I don’t get what you exactly mean by “wrap the icons”. But when the formatting is getting overridden by the element style attribute, add !important to your CSS and the style gets overridden.

for example when the display property on the style is display: block; and you want it to be inline write following CSS:

.your-element-class {<br> display: inline-block !important;<br>}