signs:
First off, thank you so much for this contribution, balihr! Making use of the banner manager this way was a brilliant idea!
My question is, if I want to make the slideshow full width of the main container and appear above the left, right and center columns, but underneath the header (and appearing only on home page), what file do I need to edit and how?
Using v1.5.1
theme: Andover Modern, modified css
add-ons:
Contact reCaptcha
Fual Slimbox
Image Handler 4
Mailchimp 3.0
Tabbed Products Pro
Testimonials Manager
Ultimate SEO URLs
Thanks so much,
Signs
I figured out a way to do it! I moved the call for the slideshow to the tpl_header.php file at the very bottom and wrapped it in my own division. I then styled that division to have a background that matched my main content area and set the slideshow to be the full width of the main wrapper.
I added the css for my new division to the stylesheet "index_home.css" and then to keep the whole thing from displaying on anything but home page, I added css for that same division to the main stylesheet.css and set it to "display:none".
I'd really rather just have the slideshow php code check to see if the page displaying is index page and if not, don't show the slideshow, but I'm better with css than I am with php.
If anyone could tell me how to place that conditional statement that checks to see if the current page is index/home page, and if so, display the slideshow I'd greatly appreciate it.
Here's the slideshow call:
<!-- 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 -->