This is a super simple fix.
In the 'webstore/main.js' file, there is a function that populates the HTML markup of the Dropdown Cart module.
At the moment, there isn't wrapping HTML around the totals content within the module. So this is after the <ul> that displays the product information and before the view cart and checkout buttons.
The code looks like:
<br>
Total Item(s): <b>8</b><br>
Sub Total: <b>$808.00</b> <br>
Would be great to be something like:
<div class="thumb_cart--totals">
<div class="thumb_cart--total-items">Total Item(s): <b>8</b></div>
<div class="thumb_cart--total-price">Sub Total: <b>$808.00</b></div>
</div>
It would be great to be able to target this content but at the moment it's just floating with no way to style or target with css.
To give you an example, I want to hide the totals from this module and keep the other elements visible.
Thanks,
Liam OToole