Page 1 of 1

hide_title not working on custom sensor

Posted: Sunday 11 February 2024 11:57
by renerene
is this is a bug?
hide_title is not working on custom sensor

Code: Select all

blocks['energiekosten'] = {
  idx: 1671,           
  icon: "fa-solid fa-euro-sign",  
  title: 'energie',
  hide_title: true,
  width: 6,                   //The width of the block relative to the column width
  unit: '€',
  addClass: 'medium'
}

Code: Select all

 .medium {
   font-size:50px !important;
   height: unset!important
 }
Image

Re: hide_title not working on custom sensor

Posted: Sunday 11 February 2024 15:08
by madpatrick
Try in custom.css

Code: Select all

[data-id='energiekosten'] .title                   {none}
or

Code: Select all

[data-id='energiekosten'] dt_title                   {none}
eventually you need to do it in custom.css