Reputation: 11
I'm trying to produce list of recently added item in cart and the code goes like this
<ol style = "overflow: -moz-scrollbars-vertical; overflow-y: scroll;">
<?php foreach($_items as $_item): ?>
<?php echo $this->getItemHtml($_item) ?>
<?php endforeach; ?>
</ol>
I'm getting the items but the scroll not working. Please help me. I'm a budding developer.
Upvotes: 0
Views: 1167
Reputation: 216
use overflow:auto
property of css instead of scroll
, and give some height
for your list.
Upvotes: 1
Reputation: 1452
If you want to have vertical scroll after certain height of ol container use below listed code
<ol style = "overflow-y: scroll;">
Upvotes: 1
Reputation: 781
Specify a height there like this
<ol style = "overflow: -moz-scrollbars-vertical; overflow-y: scroll;height:50px;">
<?php foreach($_items as $_item): ?>
<?php echo $this->getItemHtml($_item) ?>
<?php endforeach; ?>
</ol>
Upvotes: 0