Problem with Child-Theme using of foundation-framework [closed]

So, after a chat discussion with the OP, I found out that the theme being used was HireBee. After some investigation it appears that HireBee only uses a very minimal version of the Foundation framework, which didn’t include the Menu and Dropdown Menu components.

The answer in this case would be to dequeue the parent themes version of the Foundation framework CSS:

// Disable the HireBee Foundation framework.
wp_dequeue_style( 'hrb-foundation-css' );

and then download a custom version of the Foundation framework from https://foundation.zurb.com/sites/download.html/ including the required components – in this case the Navigation components ‘Menu’ and ‘Dropdown Menu’

The customised version of the Foundation framework will then need to be enqueued from the Child themes functions.php file.