After two days of intensive research I found the solution myself. Method used : Trial and Error.
Perhaps it’s all obvious for Gurus …
So for the record – if another newbie would stumble by :
Somewhere in one of the .php files of the theme you are using, you will most probably find a template tag that will list your pages in alphabetical order: <?php wp_list_pages(); ?> (default with “Pages” as title) or <?php wp_list_pages(‘title_li=’); ?> (the same but without the title).
To make it list the pages in the order you have defined, just change this to <?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>.
Michel