
Originally Posted by
jasonshanks
Hello there
Thank you for all your work on this plugin. Do you know if there is a way to make the slider window smaller ? Also is it possible to have the " Welcome Guest! Would you like to log yourself in?" message link above it ? Instead of blow it ? Thanks again .
The slider is responsive, meaning it will always adapt to it's parent container. in your case, it adapts width to the center column, and then adapts the height to be proportional to width. If you need it smaller in height, you'd need to use different images, something wider and shorter.
The welcome message - you'll need to reposition the slider code. Just edit your includes/templates/responsive_classic/templates/tpl_index_default.php and move the ZX Slideshow block of code below the greeting block. It should look something like this:
Code:
<div class="centerColumn" id="indexDefault">
<h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
<?php } ?>
<!-- begin edit for ZX Slideshow -->
<?php if(ZX_SLIDESHOW_STATUS == 'true') { ?>
<?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
<?php } ?>
<!-- end edit for ZX Slideshow -->