Jump to content

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


Go to solution Solved by Happy2Play,

Recommended Posts

mahmoudnabil
Posted

How can I change this text name to any other name?433743328_Screenshot2021-09-12181824.thumb.png.1e427eeefa59d766fdc23bd22861be76.png

  • Solution
Happy2Play
Posted

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
mahmoudnabil
Posted
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

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