That is great thank you.
I have another thing with the header.
If you see the same link I sent previosly, the search widget is not inline with the cart icon etc. It works niely when you scroll down so how can I align them.
I used the below code:
add_filter( ‘basel_header_configuration’, ‘basel_custom_header_configuration’, 1, 1 );
function basel_custom_header_configuration() {
return array(
‘container’ => array(
‘wrapp-header’ => array(
‘logo’,
‘main_nav’,
‘right-column’ => array(
‘widget_area’,
‘wishlist’,
‘cart’,
‘mobile_icon’,
)
)
),
);
}