Author Topic: Upgrade Changed Srcoller Box Size  (Read 791 times)

Mark A.

  • Newbie
  • *
  • Posts: 3
    • View Profile
Upgrade Changed Srcoller Box Size
« on: 21 May 2010, 14:41 »
I upgraded to the new version and my scroller boxes have all shrunk vertically too small.  The word count is set at 200, yet no matter what size I change it to, it will not expand vertically.
www.BackRoadsCentury.org

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,500
    • View Profile
    • Sakic.Net
Re: Upgrade Changed Srcoller Box Size
« Reply #1 on: 21 May 2010, 17:40 »
If you change the CSS height it expands vertically just fine:
modules/mod_ajaxscroller/mod_ajaxscroller/style.css
Code: [Select]
.ajaxscrl .mContainer {
width: 159px;  /* edit this value for your own module width */
height: 124px; /* edit this value for your own module height */
display: block;
overflow: hidden;
position: relative;
}

Code: [Select]
.ajaxscrl .mScroller div {
display: block;
text-align: left;
margin: 0;
float: left;
width: 159px; /* edit this value for your own module width */
min-height: 124px; /* edit this value for your own module height */
}


Mark A.

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Upgrade Changed Scroller Box Size
« Reply #2 on: 21 May 2010, 20:05 »
That fixed it.  I forgot that this was a CSS change, not a Joomla Administrator change.