wagnermoreira1982 3 Posted December 4, 2020 Posted December 4, 2020 I would like to remove the selected names in the image. I use version 4.5.3.0
Happy2Play 9444 Posted December 4, 2020 Posted December 4, 2020 You could select the three dot menu and uncheck Titles but that would be a per user preference. Don't really have much choice here as it will be all or no as there are not any targetable elements for this specific area. div.cardTextCentered {display: none;}
roaku 836 Posted December 4, 2020 Posted December 4, 2020 (edited) I haven't done a ton of clicking around to test, but this seems to do the trick: div.portraitCard[data-context="folders"] .cardBox .cardText .textActionButton { text-indent: -9999px } Edited December 4, 2020 by roaku
wagnermoreira1982 3 Posted December 4, 2020 Author Posted December 4, 2020 I used this before, but with the update it looks like it broke. Previously removed only the red information [data-context = "folders"] div.cardText.cardTextCentered.cardText-first {display: none;}
Happy2Play 9444 Posted December 5, 2020 Posted December 5, 2020 (edited) Not sure when data-context was removed but you should change to "data-type="Folder"". A can only assume the end goal is only removing card text from FOLDERS. Looks like the change in 3.5.3+ as 3.5.2 had data-context. Edited December 5, 2020 by Happy2Play
wagnermoreira1982 3 Posted December 5, 2020 Author Posted December 5, 2020 [data-type="Folder"] div.cardTextCentered {display: none;} It worked perfectly, thanks.
roaku 836 Posted December 5, 2020 Posted December 5, 2020 Ah sorry, I'm still on 4.5.2. But yeah, as long as they keep *some* specific data attribute around for each section, it should be as easy as updating that attribute name in the css.
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