Hi,
‘Popular, Video List, Recently’ are module titles of those modules themselves. If you want to have these titles appear above content of each module also, you can try this tweak:
1) Go to file: [root]/templates/ja_oslo/html/modules.php
2) Above this line of code:
echo $rendermodule->content;
Add this code:
echo '<div class="module-title-home">';
echo '<a href="#'.$rendermodule->id.'" title="'.$rendermodule->title.'">'.$rendermodule->title.'</a>';
echo '</div>';
It will look like this: http://prntscr.com/hjodw2
Then you will need to style for those titles text.
Regards