Hello,
I would like to put the cart_dropdown in the header of the site rather than have it fixed to the right. My goal is to put it in the white space above the blue navigation bar at: quantumnutrition.rlncenter.com
I attempted, without luck:
.bottom_nav_header .cart_dropdown {
display: block !important;
}
Hi ghrahams!
You would also need to change its position to absolute:
.bottom_nav_header .cart_dropdown {
display: block !important;
position: absolute;
}
Regards,
Devin
Works great! Thank you for your time, and fast reply – I value it immensely!
Graham