Domanda

How can i enable mouse rollover on attribute list for up/down list of attributes. enter image description here

È stato utile?

Soluzione

This can be done by css, in your attribute container you can set a height. To show the scrollbar, use overflow:scroll

so say you have a block like this:

<div>
 <h1> Scrollbar</h1>
  <ul>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
   <li>Test</li>
 </ul>
</div>

this would be the css:

ul{
 max-height:100px;
 overflow:scroll;

}

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top