(css) ie6 ie7

Hola foreros buenos dias, os cuento mi problema, tengo una
web con una css que en ie6 se ve way pero cuando lo abro con ie7 un
menu se sobrepone sobre otro, la web en cuestion es
www.carabeovillas.com , se que existen algunos js que eliminan
estos errores pero no los encuentro, espero vuestras ayuditas.
ciao!!

Si es cuestión de posicionamiento puedes hacer lo
siguiente, que te ilustro con
un ejemplo.
div#tu_elemento
position:absolute;
width: 100px ----> Para todos los navegadores
.width: 110px ---> Para todos los Explorer (6 y 7)
_width: 120px --> Para Explorer 6
"Sergio_Sx1" <[email protected]>
escribió en el mensaje
news:f5vsfr$sej$[email protected]..
Hola foreros buenos dias, os cuento mi problema, tengo una
web con una css que
en ie6 se ve way pero cuando lo abro con ie7 un menu se
sobrepone sobre otro,
la web en cuestion es www.carabeovillas.com , se que existen
algunos js que
eliminan estos errores pero no los encuentro, espero vuestras
ayuditas. ciao!!

Similar Messages

  • Spry text fields "invisible" on ie6/ie7

    Hi, Attached is a screen shot of how spry text fields look in their initial state under ie6 and ie7 on a project at www.printingcommunication.com/wa/seattle/contact.html
    They are "invisible".
    I'm using Dreamweaver CS4 and spry 1.6.1. I have not made any modifications to the default spry yet. This works ok on every other browser. Does any one know what modifications I need to make to have these text fields show ok under IE6/IE7? Thanks...

    With all associated files (including the apparently interfering css file) linked, open the page in Dreamweaver.
    Make sure your CSS Styles Panel is open;
    select "Current" on that panel to get a look at the styles that are in play.
    In the bottom of the Styles panel, select the asterisk-asterisk-downarrow icon at the bottom left, so that you see only the styles in use.
    Then (if you have the option) select the right-hand cascade button...it looks like a little flight of stairs.
    Okay, in Design View, click on one of your input fields. Leave the cursor there and look over at the CSS Styles Panel. You will see the cascade of styles that are affecting that item. The lowest-most will be the most specific, but all that affect your item will show in a list.
    Make sure the bottom of the styles panel is opened up...you may have to drag it open if you haven't used it; close other panels below to make more room.
    You will see there all the attributes that have been defined for the particular style you are working with.
    This should help you to focus on what is exactly going on. The form tags come with their own styling, so you'll have to look for styles that explicitly state something like input {border: none;} You may need to step up the list (pausing to check the attributes list) to find the affecting style.
    By the same token, you can alter the styling as you wish, for instance:
    <style type="text/css">
    <!--
    input {
         border: solid 1px red;
    -->
    </style>
    Of course, if you are using Spry Validation Text Fields, you might not want to make them red, as I have done! They will have their own set of colors.
    I hope some of this helps your situation. If anything, it will let you get "up close and personal" with your CSS Styles Panel
    Z

  • Bug or Feature? Different behavior after 1.6.0_02 in both Firefox & IE6/IE7

    Greetings,
    I have been testing a small java applet for a phpbb mod, named Proxy Revealer
    Basically the java applet "phones home" (connects back to the http host serving the applet) via a Socket connection to establish a direct connection, then basically writes a custom HttpRequest string with some parameters passed to it from the php script's HTML, so it looks like:
    GET /probe.php?mode=java&ip=initial_external_ip&extra=random_unique_identifier&local=LAN_IP&vendor=java_vendor&version=num&user_agent=browser
    which would allow the php script on the host/site to verify the client's IP address, and compare it with the initial IP that requested the page which loaded the applet, as well as Internal LAN IP if user is behind a router/NAT
    This allows the php script to unmask & log proxied users for security purposes, in case of spamming/trolling on the forum, in an attempt to thwart the average spammers/trollers at the least.
    The applet and the code works as desired and in various browsers, but only on JRE 1.6.0_02 and earlier releases...
    It seems ever since JRE 1.6.0_03, this has stopped working when the end-user has HTTP Proxy configured in the browser.
    I tested latest JRE as of date, ver 1.6.0_07, with IE6, IE7 & Firefox 2.0.0.15 and 2.0.0.16 and it still exhibits this odd behavior.
    This is what appears in Java Console when I try to visit the page serving this applet with an HTTP proxy configured in browser:
    java.security.AccessControlException: access denied (java.net.SocketPermission xxx.xxx.xxx.xxx:80 connect,resolve)
    xxx.xxx.xxx.xxx is the resolved IP of the server host that is hosting the applet, so basically the same origin....
    If I disable the HTTP Proxy configured in the browser, the applet connects back fine. So it only happens when HTTP Proxy is configured in browser..
    Is this a new feature or a bug??
    Here's the java applet code:
    // httpRequestor.java
    // Copyright (c) MMVI TerraFrost
    // Licensed under the GPL.
    import java.applet.*;
    import java.net.*;
    public class HttpRequestor extends Applet
         public void start()
              try
                   String javaVendor = System.getProperty("java.vendor");
                   String javaVersion = javaVendor.startsWith("Microsoft") ? System.getProperty("java.version") : System.getProperty("java.vm.version");
                   Socket sock = new Socket(getParameter("domain"), Integer.parseInt(getParameter("port")));
                   String path = getParameter("path")+"&local="+sock.getLocalAddress().getHostAddress()+
                        "&vendor="+URLEncoder.encode(javaVendor, "UTF-8")+
                        "&version="+URLEncoder.encode(javaVersion, "UTF-8")+
                        "&user_agent="+URLEncoder.encode(getParameter("user_agent"), "UTF-8");
                   String httpRequest = "GET "+path+" HTTP/1.0\r\nHost: "+getParameter("domain")+"\r\n\r\n";
                   sock.getOutputStream().write(httpRequest.getBytes());
                   sock.getInputStream();
              catch (Exception e)
                   e.printStackTrace();
    }and the relative portion from the probe.php script loading it:
              $java_url = $path_name . "probe.$phpEx?mode=java&ip=$client_ip&extra=$sid,$key";
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
      <title></title>
    </head>
    <body>
    <applet width="0" height="0" code="HttpRequestor.class" codebase=".">
      <param name="domain" value="<?php echo $server_name; ?>">
      <param name="port" value="<?php echo $board_config['server_port']; ?>">
      <param name="path" value="<?php echo $java_url; ?>">
      <param name="user_agent" value="<?php echo htmlspecialchars($HTTP_SERVER_VARS['HTTP_USER_AGENT']); ?>">
    </applet>
    </body>
    </html>A barebone/proof-of-concept demo (also employing a couple other tricks to detect CGI proxies in the same page):
    http://www.frostjedi.com/terra/scripts/ip_unmasker.php?mode=utf16
    Another similar java applet code (with demo) is found towards the bottom of this page:
    http://www.burghardt.pl/2008/05/web-browser-anonymity-threats/
    Both of these demos work with JRE versions 1.6.0_02 and older, but fail to work (in both IE & FF) with JRE 1.0.6_03 and newer - up to 1.0.6_07 which is latest as of date
    Thanks,
    Jasmine

    Thought I might elaborate on the details of the bug report I made, perhaps someone needs to add to it or needs to understand the problem better.
    Description:
    Unsigned applets cannot connect back via Socket to the originating host (from codebase) when a Proxy is configured in user's browser (IE7/IE6//FF3/FF2 tested) and when origin host's IP address doesn't resolve back to the same hostname.
    Example:
    www.hostingsite.com resolves to 1.2.3.4
    but, 1.2.3.4 resolves back to 4.3.2.1-somewebhost.com
    Affects JRE versions 1.6.0_03 - 1.6.0_07
    This wasn't a problem in 1.6.0_02 or prior versions according to my tests.
    An AccessControlException is thrown about SocketPermission:
    I believe the security manager is doing unnecessary lookups, even after the resolved IP matches to the IP of the origin host. This is apparent from the fairly long delay before the ACE is thrown about SocketPermission.
    Steps to Reproduce:
    1. Configure HTTP Proxy in browser (IE/Firefox)
    2. visit an html page that embeds a simple applet that tries to connect back to origin host whose hostname resolves to an IP address but the IP address resolves to a different hostname. (example code below)
    Expected Result:
    Applet should be able to connect back to originating host via Socket connection or write (post) to a URL on origin host (which requires a new Socket connection back)
    Actual Result:
    Socket sock = new Socket(Proxy.NO_PROXY);
    InetSocketAddress sockAddress = new InetSocketAddress(getCodeBase().getHost(), port);
    sock.connect(sockAddress);The above snippet of code would throw an ACE about SocketPermission when applet tries to initiate sock.connect
    Moreover,
    URL urlRequest = new URL(this.getCodeBase()+path);
    HttpURLConnection conn = (HttpURLConnection)urlRequest.openConnection(Proxy.NO_PROXY);
    conn.getOutputStream();would also throw an ACE about SocketPermission when the applet tries to initiate Socket connection for the conn.getOutputStream() call.
    Error Message(s):
    java.security.AccessControlException: access denied (java.net.SocketPermission x.x.x.x:80 connect,resolve)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkConnect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at HttpRequestor.start(HttpRequestor.java:16)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    x.x.x.x being the resolved IP address of the origin server
    Source code for an executable test case:
    import java.applet.*;
    import java.net.*;
    public class HttpRequestor extends Applet
         public void start()
              try
                   Socket sock = new Socket(Proxy.NO_PROXY);
                   InetSocketAddress sockAddress = new InetSocketAddress(getCodeBase().getHost(), Integer.parseInt(getParameter("port")));
                   sock.connect(sockAddress);
                   String path = getParameter("path")+"&local="+sock.getLocalAddress().getHostAddress();
                   String httpRequest = "GET "+path+" HTTP/1.0\r\nHost: "+getCodeBase().getHost()+"\r\n\r\n";
                   sock.getOutputStream().write(httpRequest.getBytes());
                   sock.getInputStream();
              catch (Exception e)
                   e.printStackTrace();
    Workaround:
    The only possible workaround I could find is if the the applet can be loaded from IP-address in the codebase URL to avoid the unnecessary lookups by the SecurityManger.
    This, however, maybe very difficult to use in most virtual-hosting environment, and IE browsers older than IE7 would most likely throw an error like "Class not found".
    Example, if www.hostingsite.com resolves to 1.2.3.4
    and http://1.2.3.4 goes to http://www.hostingsite.com
    Change the codebase URL in the html embedding the applet, from:
    "http://www.hostingsite.com/classes"
    to:
    "http://1.2.3.4/classes"
    I also forgot to mention in my bug report that this would also be quite a big problem in server farms, where the origin-hostname resolves to multiple IP addressses and when those IP addresses do not all resolve back to the same hostname.

  • IE6 & IE7 on the same PC

    hi:
    has anybody tried any of this approaches to run IE6 & IE7
    on the same PC?
    http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx
    http://labs.insert-title.com/labs/Multiple-IEs-in-Windows_article795.aspx
    jdoe

    Hugh Watkins wrote:
    > John Doe wrote:
    >
    >> hi:
    >>
    >> has anybody tried any of this approaches to run IE6
    & IE7 on the same PC?
    >>
    >>
    http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx
    >>
    >>
    http://labs.insert-title.com/labs/Multiple-IEs-in-Windows_article795.aspx
    >
    >
    > you can have a virtual machine to run legacy software
    >
    >
    http://www.parallels.com/en/
    >
    >
    > Hugh W
    >
    yes, virtualization seems to be the best approach, i'm
    planning to use
    Parallels in my MacIntel. for those using only Windows, the
    free VPC
    virtual machine image looks as a good option:
    "IE6 and IE7 Running on a Single Machine
    Many of you have asked how to run IE6 and IE7 in a side by
    side
    environment. As Chris Wilson blogged about early this year,
    it’s
    unfortunately not so easy to do. There are workarounds, but
    they are
    unsupported and don’t necessarily work the same way as
    IE6 or IE7 would
    work when installed properly. As Chris said, the best way to
    use
    multiple versions of IE on one machine is via virtualization.
    Microsoft
    has recently made Virtual PC 2004 a free download; we’ve
    taken advantage
    of that by releasing a VPC virtual machine image containing a
    pre-activated Windows XP SP2, IE6 and the IE7 Readiness
    Toolkit to help
    facilitate your testing and development. The image is time
    bombed and
    will no longer function after April 1, 2007. We hope to
    continue to
    provide these images in the future as a service to web
    developers.
    Now you can install IE7 on your main machine for development,
    and get
    all the advantages of IE7, like the RSS platform, native
    XMLHTTP stack,
    and improved security, while still running IE6 simultaneously
    in the VPC
    on the same computer. Most importantly, you don’t even
    have to buy an
    additional Windows license. The VPC image runs in a virtual
    machine that
    offers all of the functionality of a full IE6 installation
    without
    giving it any access to its host machine’s hard drive,
    registry, etc.
    You can make as many modifications as you want to the virtual
    machine
    without affecting your host installation at all.
    Included in the VPC image are:
    Windows XP Professional SP2 + high-priority fixes through
    November 2006
    Internet Explorer 6.0
    Internet Explorer 7 Readiness Toolkit 2.0
    While we’ve released a VPC image today with Windows XP
    SP2, we’re also
    investigating creating other VPC images, for example IE5,
    IE5.5, IE6 and
    IE6 SP1, as well as versions of IE on different language
    operating systems.
    Get more information on Virtual PC 2004
    Download Virtual PC 2004
    Download the Internet Explorer 6 Testing VPC Image
    One more note - VPC 2004 doesn’t run on Windows Vista,
    but this image
    will work fine with VPC 2007, which is in beta now. You can
    get this
    free beta via Connect.
    Happy testing!
    PEte LePage
    Product Manager"

  • Problem with CSS in IE7

    Hi ,
    In my jsp page, am using a css class as below, it is working fine on IE6 but it is not coming properly on IE7. Please advise some one on this...
    Thanks in advance....!!!
    .movebutton
    BORDER-TOP-WIDTH: 1px;
    FONT-WEIGHT: bold;
    BORDER-LEFT-WIDTH: 1px;
    FONT-SIZE: 8pt;
    BORDER-LEFT-COLOR: white;
    BACKGROUND: url(../Images/movebutton.bmp) fixed repeat-x center 50%;
    BORDER-BOTTOM-WIDTH: 1px;
    BORDER-BOTTOM-COLOR: white;
    TEXT-TRANSFORM: capitalize;
    WIDTH: 20px;
    COLOR: white;
    BORDER-TOP-COLOR: white;
    FONT-FAMILY: "Verdana";
    HEIGHT: 20px;
    TEXT-ALIGN: center;
    BORDER-RIGHT-WIDTH: 1px;
    BORDER-RIGHT-COLOR: white
    }

    What does this have to do with Java? These are Java forums.
    And in anycase you haven't even specified a problem; and apparently you aren't aware that CSS doesn't render the same on all browsers just like some JavaScript methods are browser specific.

  • Cfinput datefield gives wrong display in IE6 IE7

    With CF8, I try cfform=html with cfinput type=datefield. When
    I use 2 input dates, and click on the calendar image, the opened
    calendar window appears behind the second cfinput. You can check
    the result here :
    datefiled.pdf
    The code is quite simple :
    <cfform action = "cfinput.cfm">
    <p> </p>
    <cfinput type="datefield" name="MyDate1"
    firstDayOfWeek="1">
    <p> </p><p> </p>
    <cfinput type="datefield" name="MyDate2"
    firstDayOfWeek="1">
    <p> </p>
    <input type="Submit" name = "" value="Submit">
    </cfform>
    The display problem appears in IE6 and IE7, but not in
    Firefox. Is this a bug, or any workaround is already know ?
    Thanks.
    Firmus.

    <input type="Submit" name = "" value="Submit">
    corrected to: <input type="Submit" name = "sbmt"
    value="Submit">
    > Is this a bug
    Seems so. You should report it.
    i suspect the likely cause to be the z-index value.
    Z-index
    is a CSS property. It determines one element's stack order in front
    of or behind another. An element with a higher z-index will be
    stacked in front of one with a lower value. The default value is 0,
    for example, in the case where you don't specify the z-index.
    To see the relevance to your case, open in Internet Explorer
    a page containing just the form. View the source code. The
    Coldfusion engine has automatically arranged the HTML within the
    form into two main DIV blocks, each containing other DIVs. You will
    notice that neither of the two main DIV blocks has z-index in its
    style attribute. It means that they have the same z-index value,
    namely, the default value 0.
    The calender image at the top has the same z-index value as
    the input field at the bottom, namely, the default value 0. One
    would naturally expect that order of appearance would be the
    deciding factor. Apparently, order of appearance is important in
    Mozilla but not in Internet Explorer. It seems that, if two
    elements have the same z-index, Internet Explorer may show the
    second one in front of the first.
    >... any workaround ...
    Yes, here is one:
    <cfform action = "cfinput.cfm">
    <div class="df1" style="position:relative;">
    <p> </p>
    <cfinput type="datefield" name="MyDate1"
    firstDayOfWeek="1">
    </div>
    <div class="df2" style="position:relative;z-index:-1;">
    <p> </p><p> </p>
    <cfinput type="datefield" name="MyDate2"
    firstDayOfWeek="1">
    </div>
    <div class="sbmt">
    <p> </p>
    <cfinput type="Submit" name = "sbmt" value="Submit">
    </div>
    </cfform>

  • How to compensate for differences in IE6 / IE7

    I have pages located at:
    www.salleboise.com/club_tournaments.cfm and the other at
    http://www.salleboise.com/tournament.cfm?tid=1&f=1&e=1
    The pages appear fine in IE6 and FF (as far as I know), but
    in IE7, they 2
    pages positioning isn't the same (at the top of the page).
    How can I determine what changes I need to make in a CSS file
    so I can make
    sure they look the same in either version.
    I'm sure I can come up with a way to load the correct one
    based on the
    browser detected.....

    Hmmmm, that's odd, there seems to be more spacing before the
    wording of
    Tournament Schedule . on
    http://www.salleboise.com/club_tournaments.cfm
    as
    apposed to the wording Spring Fling 2008 on
    http://www.salleboise.com/tournament.cfm?tid=1&f=1&e=1.
    I'm noticing this within XP IE7......
    Does it look the same to you??
    "Pablo" <[email protected]> wrote in message
    news:fk6go4$guf$[email protected]..
    > It looks fine to me in IE7 Win XP.
    >
    > --
    > Kind Regards
    >
    > Pablo
    > .................................
    > An Eye of Menorca
    > www.dellimages.com
    > .................................
    > "Steve Grosz" <[email protected]> wrote in
    message
    > news:fk6e2d$e12$[email protected]..
    >>I have pages located at:
    >> www.salleboise.com/club_tournaments.cfm and the
    other at
    >>
    http://www.salleboise.com/tournament.cfm?tid=1&f=1&e=1
    >>
    >> The pages appear fine in IE6 and FF (as far as I
    know), but in IE7, they
    >> 2 pages positioning isn't the same (at the top of
    the page).
    >>
    >> How can I determine what changes I need to make in a
    CSS file so I can
    >> make sure they look the same in either version.
    >>
    >> I'm sure I can come up with a way to load the
    correct one based on the
    >> browser detected.....
    >>
    >>
    >>
    >>
    >
    >
    >

  • IE6 & IE7 difference strange

    Hi
    Ive just started doing the home page of a new site.
    Ive done it using CSS and been testing it in IE6.
    However when I fire the page up in IE7 the footer positions
    itself so that it hides half the bottom buttons.
    Any one know why and what the work around is
    Ta
    Carlo

    That depends on how you positioned your footer.
    IOW: post link to the page, please.
    "Softpages" <[email protected]> wrote in
    message
    news:ekid6b$iub$[email protected]..
    > Hi
    > Ive just started doing the home page of a new site.
    > Ive done it using CSS and been testing it in IE6.
    > However when I fire the page up in IE7 the footer
    positions itself so that
    > it
    > hides half the bottom buttons.
    > Any one know why and what the work around is
    > Ta
    > Carlo
    >

  • IE6 & IE7 page expands to full width when using a component ....

    I have created a dreamweaver template which expands using the overflow:visible CSS. The page displays fine when I create a recordset using the dreamweaver tools but when I created a dynamic page using the Developer Toolbox and view it in IE6 or IE7 the page is displayed in full width.

    Hi,
    I guess this happens because ADDT uses it´s own CSS, which might override your overflow:visible.
    All of ADDT´s CSS is located in the "includes/skins" directory BTW
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Css help - ie7

    I setup the website  www.footprintmedical.com and discovered that the CSS does not work correctly in IE7.
    It seems to work with IE6, IE8 and all other browsers just fine.
    Any suggestions?

    I did have a container around that area called header.  Header was set to height of 300px.
    I created a new page http://footprintmed.com/index2.html with a new css file http://footprintmed.com/layout2.css where I set the header height to 450px.  I must now test it on IE7 and other browsers to see if that fixed it.  Hopefully, that will do the trick.  If it fixed it, I will close this forum out.
    This is what it looked like on IE7.  It seemed that the text started at 300px.

  • Using BrowserLab, comment conditional CSS [for ie7] on a local WordPress set up using MAMP

    Hiya,
    I have asked this on the BrowserLab forum but thought I'd ask here as well [you never know].
    Trying to fix some IE7 issues on my WordPress site within Dreamweaver CS5/MAMP, I can't get BrowserLab to show any changes I make to the CSS file for IE7.
    To test this MAMP set up and BrowserLab, I changed the body bg colour in the IE7 CSS file [to a turquoise like colour instead of gray] and it didn't render in BrowserLab - even after refreshing in BrowserLab [just got a white square].
    After restarting the Mac Pro, it did render correctly - turquoise! At least I now know the link to the IE7 CSS file works. I'd prefer to not have to restart after every CSS change so is there something I've overlooked to get BrowserLab to render in IE7 after I've edited the IE7 specific CSS file?
    Dreamweaver doesn't 'see' the IE7 CSS in the long list of CSS, PHP, JS and XML files in Live View but I can live with that.
    Thanks
    steve
    http://www.stevedrake.net

    Fixed [I think]. See: http://forums.adobe.com/message/3856510#3856510
    steve
    P.S. A sneaky PS; any ideas on how to get the side bar to the top of the page [level with left content] would be welcome - I've got it to sit on the right with a large left margin but it sits, vertically, after the left content but above the footer.

  • XML Dataset whit spry:if works in IE8 but not in IE6,IE7 and IE9

    Hello,
    I have bigs problem with my site created using SPRY framework and the filters functions.
    My pages works properly in IE8, Safari, firefox, chrome, ecc but not in IE6 and IE7.
    In IE9 works only in "compatibility mode"
    This page is an example:
    http://www.digidevice.com/P_IT/IT-Prodotti01.html
    in the browser ok there is a list of items, in the other that don't works there is only a void rectangle.
    In this page one example with code depured by formatting:
    http://www.digidevice.com/P_IT/IT-Prodotti01_PROVADATASET2.html
    Thanks in advance

    Hi, i have a similar problem..
    These URL returns a XML:
    1) http://www.bolsadesantiago.com/intradayServlet?symbol=IPSA
    2) http://www.valorfuturo.com/contenidos_vf/proyectos/clientes/penta/titularnoticias.asp
    I use a CS4 and both works in preview, but only first works over internet (IE7).
    I suspect that 2° has a problem of syntax XML, but work with jQuery.

  • ValidationTextField in IE6 IE7 problem, 1st keystroke ignored

    hi,
    i have a very interesting problem with "ValidationTextField"
    in IE6 and IE7.
    the validation on textfiels starts at 2nd keystroke, the
    first keystroke in the field is ignored,
    if iset the values by javascript like
    $('theMovieTitle1').value = $('theNewText1').innerHTML;
    $('theMovieTitle2').value = 'Hallo ';
    $('theMovieTitle3').value = 'Hallo ÖÄÜ';
    $('movieDescription').value = 'Austria Österreich
    Fräulein ';
    hmm??
    you can see/test it here:
    http://www.startup-service.com/Spry/demos/formsvalidation/testvalidate.html
    thanks
    herbert

    I don't see that behaviour on your example in IE7 or Firefox.
    If i highlight the text in the field and then begin typing the
    validation occurs immediately
    Can you explain how you are seeing it so i can try to
    recreate?

  • CSS and IE7 Issues

    I have made a horizontal nav bar out of an un-ordered list,
    and have use a 1 pixel boader between links instead od the pipe ( |
    ) character but in IE7 the padding acts different than in Firefox
    and Safari. With this code the padding looks equal on both sides of
    the vertical line in Firefox, but in IE7 the left hand side of the
    links hug the vertical line.
    Cheers for any assistance
    Theminks
    the CSS code i used:

    Can you show us the page, please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Theminks" <[email protected]> wrote in
    message
    news:f7q31f$i28$[email protected]..
    >I have made a horizontal nav bar out of an un-ordered
    list, and have use a
    >1
    > pixel boader between links instead od the pipe ( | )
    character but in IE7
    > the
    > padding acts different than in Firefox and Safari. With
    this code the
    > padding
    > looks equal on both sides of the vertical line in
    Firefox, but in IE7 the
    > left
    > hand side of the links hug the vertical line.
    >
    > Cheers for any assistance
    >
    > Theminks
    >
    > the CSS code i used:
    >
    > #main_nav ul {
    > height: 1em;
    > vertical-align: bottom;
    > left: 0px;
    > position: relative;
    > text-align: left;
    > width: 800px;
    > padding-top: 0.8em;
    > padding-bottom: 0.8em;
    > }
    > #main_nav li {
    > list-style-type: none;
    > display: inline;
    > border-right-width: 1px;
    > border-right-style: solid;
    > border-right-color: #FFFFFF;
    > padding-right: 0.5em;
    > padding-left: 0.3em;
    > font-size: 16px;
    > color: #FFEE29;
    > }
    > #main_nav .nav_rightlink {
    > border-right-style: none;
    > padding-right: 0px;
    > }
    > #main_nav .nav_firstlink {
    > margin-left: 0px;
    > }
    >

  • [1.6][Widgets] HtmlPannel in IE6/IE7 CCS internal style bug

    If you use htmlpannel widgets, there is a bug in IE7, work
    with Firefox, no test with Safari.
    If you use internal CSS style in the page loaded, IE7 don't
    use the CSS.
    I must test it with CSS link, also you could link the css in
    the content page, but it's a problem because it means loading
    ressource that you won't necessary use.

    If you use htmlpannel widgets, there is a bug in IE7, work
    with Firefox, no test with Safari.
    If you use internal CSS style in the page loaded, IE7 don't
    use the CSS.
    I must test it with CSS link, also you could link the css in
    the content page, but it's a problem because it means loading
    ressource that you won't necessary use.

Maybe you are looking for