I just notice that size was removed, but it was tooo useful-
For example in Wordpress:
I use a loop to show my post in scrollable, so every post content starts automatic with <div>
so I got hundreds of post that are scrolling one by one....
#sizenecesary lol
but if you have a very good idea how to fix this issue like in wordpress, would be great:
my sample code:
<div id="carruselWrap">
<h2><?php echo get_option('yh_carrusel_title'); ?></h2>
<!-- "previous page" action -->
<a class="prev browse left"></a>
<!-- root element for scrollable -->
<div id="carrusel">
<!-- root element for the items -->
<div class="items">
<?php $my_query = new WP_Query('cat=6&showposts=25p&orderby=id&order=asc'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div>
<?php the_post_thumbnail(); ?>
<h1 class="other-item"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</div>
<?php endwhile; ?>
</div>
</div>
<!-- "next page" action -->
<a class="next browse right"></a>
<!-- wrapper for navigator elements -->
<div class="navi"></div>
</div>
<br clear="all" />
</div>