Question

Catalog Widget - hide catalog name

  • 18 February 2022
  • 2 replies
  • 67 views

Userlevel 1
Badge

Is there a way for the the catalog name and description not appear on the Catalog widget when using the Display mode Stream?  It’s hidden for the card view but, the card view doesn’t work for us.

 

Stream

 

 

Card

 


2 replies

Userlevel 7
Badge +6

Yes - you can with CSS!

Userlevel 7
Badge +5

You could try this CSS in your Branding and Look section.

Please test and verify it does not affect other areas.

/** Remove Catalog Title and Description **/

.ui-carousel-title {
visibility: hidden;
}

.ui-carousel-description {
visibility: hidden;
}

 

Reply