Skip to main content
Question

Hiding Page Description with CSS (New UI Update)

  • June 29, 2026
  • 2 replies
  • 73 views

Forum|alt.badge.img

Anyone have any success or find the need to hide the description which now shows up along with page titles in the new UI? We have previously used the description field to give contextual descriptions for our Power Users & Admins where pages are used for easier clean up & maintenance activities so I’d like to use CSS to hide it now that its learner facing with the new UI.

So far I see the elements attached with the description when I inspect the various pages in my browser but these seem more generic and I’m worried if I apply CSS to them they’ll impact other areas of the platform.

data-testid="default-description" class="lmn-typography-label-4

If anyone has any guidance or recommendations for how to hide the new descriptions or tests they’ve done themselves would be awesome to here!

2 replies

Forum|alt.badge.img
  • Helper I
  • June 29, 2026

Hi ​@millipore-stephen.

/* Hide page descriptions */
app-layout-title-bar .app-layout-title-bar-container .app-layout-title-bar-title-description-container .description-container {
    display: none !important;
}

I haven’t found any unwanted side effects of this, but obviously check and confirm on your platform to ber sure.


Forum|alt.badge.img

Thanks ​@gus - I’ll give it a go!