PC Review


Reply
Thread Tools Rate Thread

Changing Z-Order

 
 
JCO
Guest
Posts: n/a
 
      17th Nov 2005
I have a menu system that was done using Xara Menu System. Underneath the
menu is a "Scrolling" information box written in JavaScripts. When I use
the menu, the dropdown system goes underneath the scrolling box. I can do
anything about the way the menu works and reorganizing my site is not what I
want to do.

Is there a way to force the Scrolling Information Box to be on the bottom so
that the menu is on top?

Site: www.dfwtejanos.com

Thanks


 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      17th Nov 2005
> Is there a way to force the Scrolling Information Box to be on the bottom
> so
> that the menu is on top?


You would have to hack into the menu script to adjust the document.writes to
place the menu's layers at a z-index value higher than 1. This should not be
too hard, but it's just one of the many reasons why I would never use an all
javascript menu system like that.

--
Murray
============

"JCO" <(E-Mail Removed)> wrote in message
news:nS6ff.18089$rO4.2576@trnddc05...
>I have a menu system that was done using Xara Menu System. Underneath the
> menu is a "Scrolling" information box written in JavaScripts. When I use
> the menu, the dropdown system goes underneath the scrolling box. I can do
> anything about the way the menu works and reorganizing my site is not what
> I
> want to do.
>
> Is there a way to force the Scrolling Information Box to be on the bottom
> so
> that the menu is on top?
>
> Site: www.dfwtejanos.com
>
> Thanks
>
>



 
Reply With Quote
 
WenJun Zhang[msft]
Guest
Posts: n/a
 
      18th Nov 2005
Hi,

Is the problem that when the menu and 'scrolling' box are lapping over, the
lapped options cannot be properly selected and the mouse icon is changed?

Do you want to get rid of this or there are some other issues I haven't
seen?

Best regards,

WenJun Zhang
Microsoft Online Partner Support

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
JCO
Guest
Posts: n/a
 
      20th Nov 2005
You got most of the issue. Yes they overlap. You can see it more clear if
you tried to select the "Profile" option from the menu. The menu is
readable, however, when text from the scrolling box scrolls over the menu
item.... you can no longer select it. If you wait until the words scroll
pass the item you want to select, then you can make the selection.

I already know I can't change the menu (other than moving the profile to
another section). The Profile if going to expand with many links in the
near future. I want the scrolling text to scroll underneath the "menu
dropdown text" so that it won't interfere.



""WenJun Zhang[msft]"" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
>
> Is the problem that when the menu and 'scrolling' box are lapping over,

the
> lapped options cannot be properly selected and the mouse icon is changed?
>
> Do you want to get rid of this or there are some other issues I haven't
> seen?
>
> Best regards,
>
> WenJun Zhang
> Microsoft Online Partner Support
>
> This posting is provided "AS IS" with no warranties, and confers no

rights.
>



 
Reply With Quote
 
WenJun Zhang[msft]
Guest
Posts: n/a
 
      21st Nov 2005
Hi,

You may specify <DIV>'s z-index style attribute to a low value to test. (in
the bottom of ScrollingMessages.js. <ilayer> should apply to Netscape)

I cannot 100% guarantee if this will get rid of the conflict with menu DIV,
but it's worthy to have a try.

Thanks.

Best regards,

WenJun Zhang
Microsoft Online Partner Support

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
JCO
Guest
Posts: n/a
 
      6th Dec 2005
I'm not sure how to do this. On my home page, I call the JavaScript as
shown:
<td width="93%" align="center" bgcolor="#000080">
<script language="JavaScript1.2"
src="MyScripts/ScrollingMessages.js"></script>
</td>

Therefore; the actual script is located in another folder as shown above.
Can I add the <DIV>'s z-index on my home page? If so, how would it look?
Or do I have to add it in the actual code?

Thanks, sorry so long for me to get back to this issue.



""WenJun Zhang[msft]"" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
>
> You may specify <DIV>'s z-index style attribute to a low value to test.

(in
> the bottom of ScrollingMessages.js. <ilayer> should apply to Netscape)
>
> I cannot 100% guarantee if this will get rid of the conflict with menu

DIV,
> but it's worthy to have a try.
>
> Thanks.
>
> Best regards,
>
> WenJun Zhang
> Microsoft Online Partner Support
>
> This posting is provided "AS IS" with no warranties, and confers no

rights.
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      6th Dec 2005
You would have to edit the javascript.

--
Murray
============

"JCO" <(E-Mail Removed)> wrote in message
news:_Allf.4879$567.3914@trnddc01...
> I'm not sure how to do this. On my home page, I call the JavaScript as
> shown:
> <td width="93%" align="center" bgcolor="#000080">
> <script language="JavaScript1.2"
> src="MyScripts/ScrollingMessages.js"></script>
> </td>
>
> Therefore; the actual script is located in another folder as shown above.
> Can I add the <DIV>'s z-index on my home page? If so, how would it look?
> Or do I have to add it in the actual code?
>
> Thanks, sorry so long for me to get back to this issue.
>
>
>
> ""WenJun Zhang[msft]"" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi,
>>
>> You may specify <DIV>'s z-index style attribute to a low value to test.

> (in
>> the bottom of ScrollingMessages.js. <ilayer> should apply to Netscape)
>>
>> I cannot 100% guarantee if this will get rid of the conflict with menu

> DIV,
>> but it's worthy to have a try.
>>
>> Thanks.
>>
>> Best regards,
>>
>> WenJun Zhang
>> Microsoft Online Partner Support
>>
>> This posting is provided "AS IS" with no warranties, and confers no

> rights.
>>

>
>



 
Reply With Quote
 
WenJun Zhang[msft]
Guest
Posts: n/a
 
      7th Dec 2005
Please look into the ScrollingMessages.js. You will see the <DIV> tag is
generated at the bottom.

Best regards,

WenJun Zhang
Microsoft Online Partner Support

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
JCO
Guest
Posts: n/a
 
      8th Dec 2005
I tried values: -1, 1, & 99.
Nothing changed. Any other suggestions.

""WenJun Zhang[msft]"" <(E-Mail Removed)> wrote in message
newsPDKFrt%(E-Mail Removed)...
> Please look into the ScrollingMessages.js. You will see the <DIV> tag is
> generated at the bottom.
>
> Best regards,
>
> WenJun Zhang
> Microsoft Online Partner Support
>
> This posting is provided "AS IS" with no warranties, and confers no

rights.
>



 
Reply With Quote
 
WenJun Zhang[msft]
Guest
Posts: n/a
 
      12th Dec 2005
Hi,

If the z-index doesn't work, I think this may not be a good enough solution
on this. You'd better modify the typeset of this page to prevent the menu
overlap with the info box to work around the issue.

Thanks.

Best regards,

WenJun Zhang
Microsoft Online Partner Support

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to change series plotting order without changing legend order? PatrickM Microsoft Excel Charting 6 2nd Dec 2009 07:43 PM
How stop Excel file UK date order changing to US order in m.merge =?Utf-8?B?Um9nZXIgQWxkcmlkZ2U=?= Microsoft Excel Misc 1 9th Oct 2007 11:52 PM
changing name order =?Utf-8?B?TGl6?= Microsoft Excel New Users 1 20th Dec 2004 02:08 AM
Need help changing name order rogerk Microsoft Excel Worksheet Functions 1 11th Mar 2004 06:27 AM
tab order changing Shaun Wilde Microsoft Dot NET Compact Framework 1 12th Aug 2003 12:26 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:50 PM.