Hi anil.tsuuk,
You need to customize the Theme Code to show the Top Stories Scroller on all pages. Follow the Process as instructed below.
1- Go to Theme directory > header.php file on line no: 146. will find below line of code.
<?php if ( ( is_front_page() || is_home() ) && $newscard_settings['newscard_top_stories_hide'] === 0 ) {
replace the above code with the code provided below.
<?php if ( $newscard_settings['newscard_top_stories_hide'] === 0 ) {
2- Go to Theme directory > function.php file on line no: 210. will find below line of code.
if ( ( is_front_page() || is_home() ) && $newscard_settings['newscard_top_stories_hide'] == 0 ) {
replace the above code with the code provided below.
if ( $newscard_settings['newscard_top_stories_hide'] == 0 ) {
Note: Make Sure you make the Child Theme to customize the Theme Code so that the customize code won’t get lost while updating the Theme to a newer version in future.