• Resolved reivilob

    (@reivilob)


    Hi

    is it possible to have the “Header image” only on the home page ?

    Thanks for your ideas
    OB

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author Richie KS

    (@rkcorp)

    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;
    }
    Thread Starter reivilob

    (@reivilob)

    Thank
    work but with a simple “#” not ##custom-img-header …

    Best regards
    Olivier

    Theme Author Richie KS

    (@rkcorp)

    yeap..sry..my mistake there ??

    Thread Starter reivilob

    (@reivilob)

    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;
    }

    Theme Author Richie KS

    (@rkcorp)

    do you mean the buddypress group directory, try

    body.directory.groups #custom-img-header {
    display:none;
    }
    Thread Starter reivilob

    (@reivilob)

    sorry no change …
    https://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

    Theme Author Richie KS

    (@rkcorp)

    try

    body.groups #header {
    display:none !important;
    }
    Thread Starter reivilob

    (@reivilob)

    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

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘header image’ is closed to new replies.