Jump to content

[Request] CSS to hide the folder icon


Recommended Posts

Posted

When in folder view I would like to hide the folder icon, can anyone share the CSS required to do so?

Happy2Play
Posted

There are actually three different icons "Folder", "Photo", and "Video".

/*Remove all Folder view Icons*/
.indicator.videoIndicator {display:none; }


Or you can selectively choose which one, all three listed

/*Remove Folder view Icons*/
[data-type="Photo"] .videoIndicator {display:none; }
[data-type="Video"] .videoIndicator {display:none; }
[data-type="Folder"] .videoIndicator {display:none; }

  • Like 2
Posted

Perfect! Thank you so very much, sir :)

  • 3 weeks later...
Posted

Hi Happy, Is there anything similar to hide the title that is displayed in lower left when the option to display titles is turned off.

 

Best Regards

 

Tim

Posted (edited)

@@tmb4016

 

@@Happy2Play might not have seen this so I tagged him as I am curious too :)

Edited by Lyfesaver
Happy2Play
Posted

Hi Happy, Is there anything similar to hide the title that is displayed in lower left when the option to display titles is turned off.

 

Best Regards

 

Tim

 

 

@@tmb4016

 

@@Happy2Play might not have seen this so I tagged him as I am curious too :)

 

Something like this?

/*Remove card inner footer*/
div.innerCardFooter {display: none; }
  • Like 2
Posted

Hi Happy2Play,

 

Great - that is fantastic. Can now remove these irrritating titles that display when the option for Titles is turned off...

 

Cheers

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...