mahmoudnabil 0 Posted September 12, 2021 Posted September 12, 2021 How can I change this text name to any other name?
Solution Happy2Play 9441 Posted September 12, 2021 Solution Posted September 12, 2021 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. 1
mahmoudnabil 0 Posted September 13, 2021 Author Posted September 13, 2021 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
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