Jump to content

How can I change this text name to any other name?


mahmoudnabil
Go to solution Solved by Happy2Play,

Recommended Posts

  • Solution
Happy2Play

Exact same concept and other topic.

https://emby.media/community/index.php?/topic/101617-how-can-i-change-the-name-of-the-text-my-media/&do=findComment&comment=1066676

As they will be section and child dependent.   

/*Replace Section Header title*/
div.homeSectionsContainer div.section5 div:nth-child(4) div.sectionTitleContainer h2 {  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}
div.homeSectionsContainer div.section5 div:nth-child(4) div.sectionTitleContainer h2:after {
  content: "YOUR NEW HEADER";
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}

So you will have to look in the browser console (F12) and select your element to see where is actually exist.  

  • Like 1
Link to comment
Share on other sites

mahmoudnabil
11 hours ago, Happy2Play said:

Exact same concept and other topic.

https://emby.media/community/index.php?/topic/101617-how-can-i-change-the-name-of-the-text-my-media/&do=findComment&comment=1066676

As they will be section and child dependent.   


/*Replace Section Header title*/
div.homeSectionsContainer div.section5 div:nth-child(4) div.sectionTitleContainer h2 {  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}
div.homeSectionsContainer div.section5 div:nth-child(4) div.sectionTitleContainer h2:after {
  content: "YOUR NEW HEADER";
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}

So you will have to look in the browser console (F12) and select your element to see where is actually exist.  

it's working
thank you my friend

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