Archived topic
Hide Specific Widget in Homepage Only
6 replies · Started by Rizki on July 25, 2019
Hi there,
Could I hide specific widget only in homepage with css / function.php ?
Thanks.
Hi there,
We can do with CSS for sure.
Which one are you trying to hide?
For example a sidebar widget with this ID : .text-4, how to hide this widget only in homepage ?
Try this CSS:
body.home .sidebar #text-4 {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Try this CSS:
body.home .sidebar #text-4 {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Ah, this is works perfectly :) Thanks Leo for ur support.
No problem :)