Viewing 14 posts - 1 through 14 (of 14 total)
  • Posted in: Joyn
  • #284550
    nosuchagency
    Member
    Post count: 226

    Hi guys.

    Got a “closed area” on the site where we’d like the regular foot to be removed from those specific pages.
    Is that possible?
    Is it possible to setup an alternate footer?

    Br.

    SorenJ.

    #284582
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Do you want to remove the footer completely from some specific pages?
    Thanks
    Mohammad

    #284586
    nosuchagency
    Member
    Post count: 226

    Hi Mohammad.

    I’d like to setup an alternate footer.
    It that’s impossible, then remove the existing on specific pages.

    SJ.

    #284593
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi there,

    Unfortunately that customisation is beyond our scope of support as it is more work than a small customisation. We only provide support for theme issues, and at times basic customisations. While we’d love to be able to support every customisation request, we simply don’t have the time. We recommend that you seek a freelance developer.

    Thanks
    Mohammad

    #284598
    nosuchagency
    Member
    Post count: 226

    So it’s not possible to remove the footer on specific pages either?

    #284599
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Yes, its possible to remove the footer at specific pages but not possible to create the alternate footer.
    Thanks
    Mohammad

    #284600
    nosuchagency
    Member
    Post count: 226

    Great!

    Then how do I remove footer on specific pages then?

    #284608
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please use this custom css code:-

    /*just change the page is 2 with your page id*/
    .page-id-2 #footer{
    display:none !important;
    }

    Thanks
    Mohammad

    #284611
    nosuchagency
    Member
    Post count: 226

    Awesome!

    What if there are several pages?
    How should I write the code them?

    #284613
    David Martin – Support
    Moderator
    Post count: 20834

    You can comma separate multiple CSS classes.

    .page-id-2 #footer,
    .page-id-3 #footer,
    .page-id-4 #footer {}
    #284615
    nosuchagency
    Member
    Post count: 226

    Hi David.

    So just to be absolutely certain, it would be like this?

    .page-id-2 #footer,.page-id-3 #footer,.page-id-4 #footer{
    display:none !important;
    }

    #284616
    David Martin – Support
    Moderator
    Post count: 20834

    Yes, that’s correct. For readability you can keep it formatted like:

    .page-id-2 #footer,
    .page-id-3 #footer,
    .page-id-4 #footer {
       display:none !important;
    }
    #284617
    nosuchagency
    Member
    Post count: 226

    That worked!

    Great, thanks.
    You can close this ticket :o)

    #284618
    David Martin – Support
    Moderator
    Post count: 20834

    Ok, thanks Mohammad for the code.

    – David.

Viewing 14 posts - 1 through 14 (of 14 total)

You must be logged in to reply to this topic.