Jump to content

Removing Text for my media tabs


Lordof themanor

Recommended Posts

Lordof themanor

Hey all just wondering if there is some special css code out there that could remove the text part of my tabs on the home screen only as i have images of what they are.

Link to comment
Share on other sites

Happy2Play

Are you talking about only My Media?

 

assumes My Media are in first Home Screen section.

div.section0 div.cardText {display: none;}
Link to comment
Share on other sites

Lordof themanor

That was So fast and amazing worked perfect !! thank you! While you are here do you know of a way to change the text my media to my channels ?

Link to comment
Share on other sites

Happy2Play

That was So fast and amazing worked perfect !! thank you! While you are here do you know of a way to change the text my media to my channels ?

 

Give me a few minute as it would be a updated variation of this.

https://emby.media/community/index.php?/topic/70525-remove-change-most-recent/

Link to comment
Share on other sites

Happy2Play

Something like this.

/*Replace Section Header title*/
div.section0 h2 {  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}
div.section0 h2:after {
  content: "My Channels";
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}
Link to comment
Share on other sites

Lordof themanor

this one is a long shot but do you know how to remove files from displaying in the mobile menu the bottom one on the home screen? so removing my movie library and tv library and just keeping search, home and the more hamburger ?

Edited by Lordof themanor
Link to comment
Share on other sites

Happy2Play

this one is a long shot but do you know how to remove files from displaying in the mobile menu the bottom one on the home screen? so removing my movie library and tv library and just keeping search, home and the more hamburger ?

Everyone's setup is unique and not positive on these tabs, so all I can do is guess here.

div.appfooter a.dockedtabs-tab-button[data-index="1"], div.appfooter a.dockedtabs-tab-button[data-index="2"] {display: none;}
Edited by Happy2Play
Link to comment
Share on other sites

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...