2024-09-06, 03:02 PM
(2024-09-06, 02:39 PM)vbxlive Wrote:(2024-09-06, 01:20 PM)M0RPH3US Wrote:I tried this everything showing blank now, none of device shows webpage , completely blank,how to undo or delete code(2024-09-06, 02:10 AM)vbxlive Wrote: How to remove "Recently added in" Text in Library Category only want to show only Library category name,where I can edit file to remove that
Start by ensuring Recently Added is the Home screen section 2 in Settings > Home.
To explain better I may have 3 categories - Hollywood, Bollywood & Cartoon.
For Hollywood Section
Code:#homeTab
> div
> div.section1
> div:nth-child(1)
> div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
> a
> h2 {
display: none;
}
#homeTab
> div
> div.section1
> div:nth-child(1)
> div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
> a
> span {
display: none;
}
#homeTab
> div
> div.section1
> div:nth-child(1)
> div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
> a:after {
content: 'Hollywood ›';
font-size: 24px;
font-weight: normal;
}
Similarly, For Bollywood
Code:#homeTab
> div
> div.section1
> div:nth-child(2)
> div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
> a
> h2 {
display: none;
}
#homeTab
> div
> div.section1
> div:nth-child(2)
> div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
> a
> span {
display: none;
}
#homeTab
> div
> div.section1
> div:nth-child(2)
> div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
> a:after {
content: 'Bollywood ›';
font-size: 24px;
font-weight: normal;
}
And so on. See how I am changing the nth child for each. Play around with the font size and color
You added this in the custom css right.??