I’m re-opening this post, because there is another problem here….
I have since changed the number of pages via the Theme options, however it doesn’t allow more than 5 pages to be displayed.
Any more than this and it displays a ‘more’ option.
(even though there looks to be plenty of room.
there is a functions.php file (copy of which is here in .txt format: https://www.alysinkyfingers.co.uk/functions.txt)
this mentions maximum menu limit like this:
function mythemes_menu(){
if(my_menu_limit()){
$limit = my_menu_limit();
}else{
$limit = _LIMIT_;
}
$my_nav_menu = new mythemes_walker_nav_menu($limit);
$args = array(
'menu' => '',
'container' => 'div',
'container_class' => 'container',
'container_id' => '',
'menu_class' => 'container',
'menu_id' => '',
'echo' => false,
'fallback_cb' => '',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 0,
'walker' => $my_nav_menu,
'theme_location' => 'menu_in_header',
); //menu_in_header
and there’s also a div.menu in css – but not sure if this has anything to do with it?
any ideas?
thanks in advance.