HEllo @KiavusPetstore
Go to online store ---------> themes --------------> actions ------> edit code------->base.css -----> line number 2319
search this code
In order to remove the green bar above “Your Cart” and replace it with a grey line, you would need to navigate to your theme’s CSS file and look for the code related to that bar. It might be under a class or ID like ‘.cart-title’ or ‘#cart-title’. Find the background-color property and change its value to the grey color you want. For example, if you found ‘.cart-title’, your code might look like this:
For changing the color of the special request and quantity box, you would need to find the CSS selectors for these elements and modify their background-color property as well, similar to the above step.
To add a grey divider line above “Subscribe to our club” with about 20 pixels distance, you would need to add a border to the element above it or a pseudo-element (::before or ::after) with a grey border. It would look something like this:
.element {
border-top: 1px solid #D3D3D3; /*This adds the grey line*/
padding-top: 20px; /*This adds the 20px distance*/
}
Please replace ‘.element’ with the correct class or ID of the element above “Subscribe to our club”.