user2027890
user2027890

Reputation: 11

Scroll bar not working

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

Answers (3)

Dharmendra
Dharmendra

Reputation: 216

use overflow:auto property of css instead of scroll, and give some height for your list.

Upvotes: 1

Muzafar Ali
Muzafar Ali

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

Sanjay
Sanjay

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

Related Questions