Flash image covering part of pull-down menu
I may have missed the thread covering this situation:
a Flash file displays properly in define_main_page.php but it covers a portion of the Apple Zen pull-down menu (when mouseover activates the menu).
http://aaadisplaygroup.net/index.php
I thought a proper z-index setting would solve the problem but I cannot get it work. Any one has a solution?
Thanks for your help,
deBeaujeu
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
dolzer
That is a very odd issue, but if hllight's post just beneath yours also pertains to you:
Quote:
Originally Posted by
hllight
This isn't a fix but rather a possible cause. I had a similar problem when I attempted to delete "Gift Certificate" and "Discount Coupons" from the drop down menu. I deleted the the associated instruction from the php file and instead of deleting them, I got a similar message. I replaced the file with the original and was back where I started with the Certificate and Coupon menu items.
This just happened yesterday and I decided to move on with more important modifications and wait till another day to remove the menu items. I don't have a solution yet. BUT I WILL and will let you know when I do. Probably not much help but I tried.
If you tried to remove "Gift Certificate" and "Discount Coupons" (or any sections) from includes/templates/YOUR_TEMPLATE/tpl_drop_menu.php, put it back to the original. :smartalec:
Then go to your admin, go to "Modules", "order total" and turn off the modules there, and those items will remove themselves.
Now, if you want to use "Gift Certificate" and "Discount Coupons", but just don't want them from the menu, be sure to remove ONLY the relevant code:
Code:
<?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?><li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
<?php } ?><?php if (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') { ?><li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
<?php } ?>
Its confusing because of the way I formatted the code, will fix that in my next release. But remember that the <?php } ?> comes after the section you're removing, not before.
Re: Flash image covering part of pull-down menu
Quote:
Originally Posted by
deBeaujeu
I may have missed the thread covering this situation:
a Flash file displays properly in define_main_page.php but it covers a portion of the Apple Zen pull-down menu (when mouseover activates the menu).
http://aaadisplaygroup.net/index.php
I thought a proper z-index setting would solve the problem but I cannot get it work. Any one has a solution?
Thanks for your help,
deBeaujeu
Unfortunately, you can't z-index flash. But I did a search for z-index and flash on this forum, and found this idea (read the optimism section, LOL):
http://www.zen-cart.com/forum/showpo...49&postcount=4
Re: Apple Zen Template Support Thread
I am working on arranging my apple zen header and really hoping that I'm not going to have to go with nested tables. Can someone out there assist?
Right now I've got problems with the stuff on the right-hand side of the header getting bumped down below the line of the logo image. I've removed everything from the "tagline" div but I'd really like to be able to put another image there or the login header contrib.
Here's a link to my test site:
http://www.gammagraph.com/store/
and a screenshot of how I would like it to line up:
http://www.gammagraph.com/store/omega_screenshot.png
Any advice would be great. Thanks!
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
hrm
I am working on arranging my apple zen header and really hoping that I'm not going to have to go with nested tables. Can someone out there assist?
Right now I've got problems with the stuff on the right-hand side of the header getting bumped down below the line of the logo image. I've removed everything from the "tagline" div but I'd really like to be able to put another image there or the login header contrib.
Here's a link to my test site:
http://www.gammagraph.com/store/
and a screenshot of how I would like it to line up:
Any advice would be great. Thanks!
All you need to do is reduce the width of #navMain. From my testing, 19em seems to be about right:
#navMain {
width:19em;
float: right;
text-align:right;
margin-right:0;
position:relative;
}
Re: Apple Zen Template Support Thread
Hi Jettrue,
I'm back with more questions I'm afraid!
I'm wondering if you can tell me how I get the back and submit buttons to align on my contact page as they're a bit squiffy.
http://www.keela.co.uk/catalog/index...age=contact_us
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
high2K
It's because of the margin on the INPUT tag. The send button is an "input" button, whereas the back button is just an image with a link.
so you can tell that specific input button not to have a top and bottom margin:
#contactUsDefault .buttonRow input {margin:0 .5em;}
Re: Flash image covering part of pull-down menu
Quote:
Originally Posted by
jettrue
Jettrue:
Thank you so much for the info on the use of the z-index and flash files.
You are a technical virtuoso of immense proportion.
The Apple Zen pull-down menu opens over the flash image as it should. It works just fine.
The secret is to make the flash object transparent with:
“<param value="transparent" name="wmode" / >”.
deBeaujeu