CSS to remove the "Back Link"

.kn-scene .kn-back-link {

  visibility: hidden;

}

Thank you 8968620728. This helped me tremendously.

 

#kn-scene_XXX .kn-back-link {
display: none;
}

 


Javascript is needed to trigger on a scene render instead of CSS that always styles.

Some air code here not tested - change 131 to your scene key 

$(document).on('knack-scene-render.scene_131', function(event, scene) {
    $('.kn-back-link').hide();
});

 

Bump - would like to echo Charles' question. I can't seem to get my CSS targeted to the backlink on a scene only

This example removes it from all pages, correct?  How can I set it to a specific scene only? I have a page that I send my user to where I pass their Record ID.  I don't want them to have the ability to go to the previous page and would like to remove the Back Link. 

Thanks,