When hovering over the shopping list, it should expand to display multiple items and the total price. I am looking to position the form in the middle of the cart item. For instance, the Quantity form should be in the middle between Chloe and $14,200. Any assistance in solving this would be greatly appreciated. If there is a simpler way to add an input box for quantity, please inform me.
body {
background-color: white;
width: 100%;
height: 100%;
margin: 0px;
}
/* Styles the list */
ul.breadcrumb {
padding-top: 16px;
list-style: none;
margin-left: 60px;
}
... (remaining CSS code) ...
#limited-stock {
color: red;
font-weight: bold;
font-family: 'Times New Roman', Times, serif;
font-size: 16px;
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Elysian</title>
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="294b46465d5a5d5b4859691c071a071b">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
... (remaining HTML code) ...
</body>
</html>
Thank you for your help.