Lyfesaver 73 Posted November 6, 2018 Posted November 6, 2018 When in folder view I would like to hide the folder icon, can anyone share the CSS required to do so?
Happy2Play 9441 Posted November 6, 2018 Posted November 6, 2018 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; } 2
Lyfesaver 73 Posted November 7, 2018 Author Posted November 7, 2018 Perfect! Thank you so very much, sir
tmb4016 92 Posted November 22, 2018 Posted November 22, 2018 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
Lyfesaver 73 Posted November 23, 2018 Author Posted November 23, 2018 (edited) @@tmb4016 @@Happy2Play might not have seen this so I tagged him as I am curious too Edited November 23, 2018 by Lyfesaver
Happy2Play 9441 Posted November 23, 2018 Posted November 23, 2018 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; } 2
tmb4016 92 Posted November 28, 2018 Posted November 28, 2018 Hi Happy2Play, Great - that is fantastic. Can now remove these irrritating titles that display when the option for Titles is turned off... Cheers
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now