element.style
-
Hi everyone!
I am using WP e-Commerce 3.8.7.6.2 bug fix release January 25, 2012 and here http://www.love-glass.co.uk/?page_id=10 I would like to change the size from 45px to square 129px. In firebug is telling me to change the element.style., which I think? has to be change in my wpsc-category_widget.php I had a little play with it but still no luck ( Any hints what to do?
Thank you in advance,
LoveGlass
-
<div class=’wpsc_categorisation_group’ id=’categorisation_group_<?php echo $categorisation_group[‘id’]; ?>’>
<?php if(count($categorisation_groups) > 1) : // no title unless multiple category groups ?>
<h4 class=’wpsc_category_title’><?php echo $categorisation_group[‘name’]; ?></h4>
<?php endif; ?><?php if(get_option(‘wpsc_category_grid_view’) != 1) : // if category grid view is off?>
<ul class=’wpsc_categories wpsc_top_level_categories <?php echo implode(” “, (array)$provided_classes); ?>’>
<?php wpsc_start_category_query($category_settings); ?>
<li class=’wpsc_category_<?php wpsc_print_category_id();?>’>
” class=’wpsc_category_image_link’>
<?php wpsc_print_category_image(45, 25); ?>
” class=”wpsc_category_link <?php wpsc_print_category_classes(); ?>”>
<?php wpsc_print_category_name();?>
<?php if (get_option(‘show_category_count’) == 1) : ?>
<?php wpsc_print_category_products_count(“(“,”)”); ?>
<?php endif;?>
<?php wpsc_print_product_list(); ?>
<?php wpsc_print_subcategory(”- “, “
“); ?>
<?php wpsc_end_category_query(); ?>
<?php else: // if category grid view is on?>
<div class=’wpsc_categories wpsc_category_grid’>
<?php wpsc_start_category_query($category_settings); ?>
” class=”wpsc_category_grid_item <?php wpsc_print_category_classes(); ?>” title='<?php wpsc_print_category_name();?>’>
<?php wpsc_print_category_image(45, 45); ?>
<?php wpsc_print_subcategory(“”, “”); ?>
<?php wpsc_end_category_query(); ?>
<div class=’clear_category_group’></div>
</div><?php endif;?>
<div class=’clear_category_group’></div>
The topic ‘element.style’ is closed to new replies.