try add this to customizer->general->custom css
#custom-img-header {
display:none;
}
body.home ##custom-img-header,
body.home-page #custom-img-header {
display:block;
}
Thank
work but with a simple “#” not ##custom-img-header …
Best regards
Olivier
yeap..sry..my mistake there 🙂
Hello
I discover a very strange problem …
this custom modification works fine on all pages of the site except all groups page !
The page that list all the groups is ok, but when i select a group, the image and site title is still there !!! on all groups
any idea ?
my custom CSS:
#custom-img-header {
display:none;
}
body.home #custom-img-header,body.home-page #custom-img-header {
display:block;
}
#siteinfo {
display:none;
}
body.home #siteinfo,body.home-page #siteinfo {
display:block;
}
do you mean the buddypress group directory, try
body.directory.groups #custom-img-header {
display:none;
}
sorry no change …
http://www.linkedbyroad.com/
-select groupes
— select one group
The header images and siteinfo is here
(nowhere else on the site)
really strange
Best regards
Olivier
try
body.groups #header {
display:none !important;
}
Sorry this does not work but the problem was not the body.groups
the solution was found and this is:
body.single-item.groups #custom-img-header {
display:none;
}
body.single-item.groups #siteinfo {
display:none;
}
We do not found why this is not covered by the global:
#custom-img-header {
display:none;
}
but is works like this…
Regards
Olivier