[css-d] IE and blocking content

2007-12-05 Thread Ray Mike Troy Pello
Hey guys,

Just wanted to ask as to why IE (esp 6 and 7) block some javascripts and 
css? I am making a site that uses DW spring framework and IE just blocks 
the script and everything.

I wanted to ask whether there are some workaround on this or just simply 
make a script to do detection for IE and don't load the script?

Regards,
- Ray
___DISCLAIMER___
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the sender. Please note 
that any views or opinions presented in this email are solely those of the 
author and do not necessarily represent Universitas Ciputra as an academic 
institution. Finally, the recipient should check this email and any attachments 
for the presence of viruses. Universitas Ciputra accepts no liability for any 
damage caused by any virus transmitted by this email.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [Fwd: Re: [css-d] suckerfish issue]

2005-09-14 Thread Ray Mike Troy Pello

Tekin Suleyman wrote:


Thanks, that works a treat!
I love this list!
tekin


Glad to help.. :)
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [Fwd: Re: [css-d] suckerfish issue]

2005-09-14 Thread Ray Mike Troy Pello

Ray Mike Troy Pello wrote:


Tekin Suleyman wrote:


no, the problem is that when you roll over the 'products' menu buttom,
the sub menu appears, but a big gap also appears between the 'products'
button and the 'gallery' one. I only seem to get this with IE6..
I have discovered that if i add

height:1em;
vertical-align: bottom;

to the ul#mainnav li style, this gets rid of the problem, but messes it
up for other browsers. I may have to settle for having a seperate
conditional stylesheet for IE6 with these styles in.. 




Found the problem.. you used display: block; to show the list of 
dropdowns on IE this is somewhat buggy and tend to have some margin 
problems on IE.
I tried a couple of steps but i think adding ul#mainnav li to include 
float: left; instead of display: block; does the trick.


The code should be :

ul#mainnav li {
   display: block;
   float: left;
   background:white;
   font:11px;
   }

Of course then the boxiviy div below it would need to be adjusted. But i 
hope this can help your problem.

Double stylesheet wont help .. more work IMO

=)

Regards,
Ray Pello
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Z-index and Select Problem

2005-09-14 Thread Ray Mike Troy Pello

Barton Tyner wrote:


Hello All,

I'm encountering that annoying problem in IE where a CSS pull-down menu
overlaps a select menu and the CSS menu goes behind the select menu.
Changing the z-indexes for these does nothing. Ugh.

Does someone have a solution they could share with me. I'd appreciate
any help I could get.

You can see the page at http://www.ipfw.edu/test/schools/etcs/ .

Thanks in advance,

Bart
 

This is still buggy on the part of the browser. No amount of CSSing can 
hover anything above it and still see the select below it. Either you 
can hide it somewhere or use iframes (nasty hack i tell u).


The better thing is to redesign the page so it does not happen :) this 
is the best solution without the ugly hacks...


Regards,
Ray Pello
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [Fwd: Re: [css-d] suckerfish issue]

2005-09-13 Thread Ray Mike Troy Pello

Tekin Suleyman wrote:


Thanks, this has solved the problem but has created a new one. Now a gap
appears between the list item with the sub list and the next item in IE.
I've Spent the morning trying to get rid of this gap but with no
success.

Updated page is here: http://www.boxivity.co.uk/test/main-template.html
 


Is this the problem with the rollover images?
In my IE the rollover images are somewhat slow... just reconfirming if 
this is the problem stated?


Ray
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [Fwd: Re: [css-d] suckerfish issue]

2005-09-13 Thread Ray Mike Troy Pello

Tekin Suleyman wrote:


no, the problem is that when you roll over the 'products' menu buttom,
the sub menu appears, but a big gap also appears between the 'products'
button and the 'gallery' one. I only seem to get this with IE6..
I have discovered that if i add

height:1em;
vertical-align: bottom;

to the ul#mainnav li style, this gets rid of the problem, but messes it
up for other browsers. I may have to settle for having a seperate
conditional stylesheet for IE6 with these styles in..
 


hm...
For my part the dropdown itself fails to show. I didnt get the gap 
problem you mentioned.


Anyone else can help with this? I cannot debug this.. since i cannot see 
the problem...


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[Fwd: Re: [css-d] suckerfish issue]

2005-09-12 Thread Ray Mike Troy Pello

Tekin Suleyman wrote:

Hi. should be a simple one for someone who knows what they're doing - 


http://www.boxivity.co.uk/test/main-template.html

for some reason, the sub list disappears when the mouse hovers over the
border between the list elements (which also appears to be rendering
behind the main image over which the list is displayed in firefox!?)
 

I had some problems with this the other day. This happens because the 
margins between the list items, which did not track the mouse when 
hovered at it. The quick solution is to have the border on the 
ul#mainnav li a instead on the ul#mainnav li. This would make the border 
part of the a which can detect mouseovers.


ul#mainnav li a {
   display: block;
   margin: 0;
   padding: 4px;
   padding-top:5px;
   padding-left:30px;
   background: #9FCC29 url(/images/menu-star.gif) no-repeat left top;
   font: bold 11px tahoma, sans-serif, arial;/* If you get an 
unwanted gap after your a block (IE-Win) try increasing the line 
height*/

   color: #071B64;
   text-decoration: none;
   width: 131px;/* Causes Problems in IE5-Mac and 
Netscape/Mozzilla - see next fix*/

   border-bottom: 2px solid #fff; /* Change is here */
}

Hope this helps

Ray
*BaliCamp*
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] MSIE li menu problem

2005-09-12 Thread Ray Mike Troy Pello

Ask Bjørn Hansen wrote:


Hi everyone,

I made a simple menu with a olli .../lili.../li[]/ol  
structure.


It's at http://www.pool.ntp.org/ (css at http://www.pool.ntp.org/css/ 
ntppool.css)


It works great in Safari and Firefox:
http://tmp.askask.com/2005/09/pool-safari.png

But in MSIE each li is the width of the window and stacked below  
each other:

http://tmp.askask.com/2005/09/pool-msie.png

Help!  :)


   - ask

ps. thanks everyone for this list.  I've been participating on far  
too many lists and online forums since the early nineties and this  
one really stands out as being exceptionally friendly and useful.   
You are all great (and beautiful, I'm sure).  :-)



CMIIW
The main problem is that you are using inline-block for the menu which 
has some problems on some browsers. Try using display: inline instead


hope it helps

Ray
*BaliCamp*
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/