Results 1 to 10 of 3041

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Re: Flash image covering part of pull-down menu

    Quote Originally Posted by deBeaujeu View Post
    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
    Hi All,

    I have implement the above solution which works a treat in internet explorer, however it does not solve the problem in firefox. the drop down menu continues to drop behind my activeX control.

    Any solutions for firefox???

    Many Thanks

    Colin

  2. #2
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Flash image covering part of pull-down menu

    Quote Originally Posted by colnixon View Post
    Hi All,

    I have implement the above solution which works a treat in internet explorer, however it does not solve the problem in firefox. the drop down menu continues to drop behind my activeX control.

    Any solutions for firefox???

    Many Thanks

    Colin
    Remove it? LOL, just kidding. Kind of. I've never been a fan of flash. But it doesn't bug me nearly as much as when music auto plays on a site. :)

    I see the menu just fine in my firefox.

  3. #3
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Computer going a little crazy and submitted my post when I pressed enter for a line brake...

    ADMIN PLEASE DELETE
    Last edited by colnixon; 4 Mar 2009 at 04:28 PM. Reason: POSTING ERROR

  4. #4
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Computer going a little crazy and submitted my post when I pressed enter for a line brake...

    ADMIN PLEASE DELETE
    Last edited by colnixon; 4 Mar 2009 at 04:28 PM. Reason: POSTING ERROR

  5. #5
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hiya Jade,

    It may be down the version of firefox use i dunno...

    If my drop dowm menus hide behind the activeX on my firefox chances are it will on some other peoples firefox as well.

    Anyway I have found a solution

    In the HTML code for your activeX object you will have a section that opens an embed tag as seen below.

    <embed
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    name="Movie4"
    width="518" height="249"
    src="Movie4.swf"
    bgcolor="#FFFFFF"
    quality="high"
    swliveconnect="true"
    allowscriptaccess="samedomain"

    div#nav-cat ul.level1 {
    /*position: absolute; */
    z-index:1;
    }
    >
    <noembed>
    </noembed>
    </embed>


    The solution is to add the following: WMode="transparent"
    after the <embed
    so it now reads:

    <embed
    WMode="transparent"
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    name="Movie4"
    width="518" height="249"
    src="Movie4.swf"
    bgcolor="#FFFFFF"
    quality="high"
    swliveconnect="true"
    allowscriptaccess="samedomain"

    div#nav-cat ul.level1 {
    /*position: absolute; */
    z-index:1;
    }
    >
    <noembed>
    </noembed>
    </embed>

  6. #6
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Apple Zen REMOVE #dropMenuWrapper and #navCatTabsWrapper

    Hi all,

    Been narking me all day this one, I need to remove the blue and grey lines that are highlighted in my picture...

    I have managed to remove the grey line through the stylesheet.css

    I removed the following line:
    background:#929292; /* remove background:#929292; for narrow header*/

    I have noticed the blue line refers to #navCatTabsWrapper
    to remove the blue line i have tried removing this line with no effect:
    #navCatTabsWrapper {background:#6084C4; }

    Any ideas anyone????

    Thanks in Advance for any advice

    Colin
    Attached Images Attached Images  

  7. #7
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Apple Zen remove blue/green bar above drop down menus

    solution for the above post is to open your stylesheet.css

    then find the line saying:
    #navMainWrapper, #navCatTabsWrapper, #navEZPagesTopWrapper {

    and remove:
    #navEZPagesTopWrapper

  8. #8
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Apple Zen narrow header option leave drop menus off centre

    as can be seen on my screen shot i have uncommented the section to allow a narrow header. I am now left with my drop down menus been off centre.

    I have noticed a post in forum the same as this and it has had no responce

    Any ideas how to get these borders aligned properly?

    Many Thanks

    Colin
    Attached Images Attached Images  

  9. #9
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen narrow header option leave drop menus off centre

    Quote Originally Posted by colnixon View Post
    as can be seen on my screen shot i have uncommented the section to allow a narrow header. I am now left with my drop down menus been off centre.

    I have noticed a post in forum the same as this and it has had no responce

    Any ideas how to get these borders aligned properly?

    Many Thanks

    Colin
    You've got to pay more attention to detail.

    You need to do these portions you missed:
    Code:
    #headerWrappera {
    width:100%; /* change to width:76em; for narrow header*/
    margin:0 auto;
    text-align:center;
    }
    #navCatTabsWrapper {
    width:100%; /* change to width:75em; for narrow header*/
    margin:0 auto;
    text-align:center;
    }
    #navMain {
    width:75em;  /* remove width:75em; for narrow header */
    margin:0 auto;
    }
    You need to change this to 76em:
    Code:
    #dropMenuWrapperb {
    width:74em;
    margin:0 auto;
    position:relative;
    }
    You need to delete stylesheet_header_menuBACKUP.css from the server.

    You need to change 70em to 75em (two instances) in stylesheet_header_menu.css.

    You logo still has faux drop shadow edges in the actual image.

    All the above will get you closer, but I think you still will need more fixes.

  10. #10
    Join Date
    Apr 2008
    Posts
    47
    Plugin Contributions
    0

    Default Re: Apple Zen narrow header option leave drop menus off centre

    Quote Originally Posted by jettrue View Post
    You've got to pay more attention to detail.

    You need to do these portions you missed:
    Code:
    #headerWrappera {
    width:100%; /* change to width:76em; for narrow header*/
    margin:0 auto;
    text-align:center;
    }
    #navCatTabsWrapper {
    width:100%; /* change to width:75em; for narrow header*/
    margin:0 auto;
    text-align:center;
    }
    #navMain {
    width:75em;  /* remove width:75em; for narrow header */
    margin:0 auto;
    }
    You need to change this to 76em:
    Code:
    #dropMenuWrapperb {
    width:74em;
    margin:0 auto;
    position:relative;
    }
    You need to delete stylesheet_header_menuBACKUP.css from the server.

    You need to change 70em to 75em (two instances) in stylesheet_header_menu.css.

    You logo still has faux drop shadow edges in the actual image.

    All the above will get you closer, but I think you still will need more fixes.
    hiya jade,

    hope all is well...

    again thanks a bunch for ur help, ur like a godess at this stuff, i feel like a charity receiving so much guideance.

    I implemented everything u said and the drop down menus ended up been to wide resulting in the final button moving down on to a new line.

    to resolve i undone the following back to 70em again:
    You need to change 70em to 75em (two instances) in stylesheet_header_menu.css.

    im sure u know my url off by heart by now but here it is again
    www.kitchenandbedroominteriors.com/store

    the side borders on the drop down menus seem to be wider than the side borders on the main part of the site. I have checked stylesheet_header_menu.css for any place to edit border size but could not see anywhere.

    I know your probably laughing ur socks off at me for not been able to find it, again it will probably result in 1 of those things that takes me all day to fix n u would know what to change without even having to think about it lol

    cheers

    Colin

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg