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;
> }
>

Similar Messages

  • Flash Button and IE7 issues

    When I first built www.tutsheaven.com, I used Dreamweaver and
    Flash buttons. Everything has worked fine until IE7 came out. Now,
    you need to double click on the buttons to navigate to the next
    page. Is there a fix for this problem, or do I need to change all
    of the buttons on this and some other sites?
    Bob Tuttle
    707-322-4959
    [email protected]

    update dreamweaver 8 to 8.02, or get dreamweaver cs3.

  • CSS and JS version control is causing issues with the Application Cache.

    Hi there,
    I am creating a Web App for use on an iPad and I have been using Adobe Muse to do this.
    The Web App needs to work offline for the most part so I have been using the Application Cache in HTML5 to do this. Everything is caching correctly to the iPad (Safari Browser), however, after a while, the browser is unable to retrieve the CSS and JS complonents of the site from the Application Cache. I have deduced after much mucking around, that the HTML references to the CSS and JS files have version control stuck on the end of it. This seems to work fine when online as the version number after the ? is ignored by the browser.
    When the browser is accessing the CSS and JS files from the application cache, it appears to require the version control number as well. This is where the entire site falls over. It sometimes takes about a day of being offline but eventually, the CSS and JS files must be purged from the browser cache and then they are unable to be resolved from the Application Cache.
    This is really annoying as I am having to go through every HTML file to remove the CSS and JS version numbers.
    Does anyone know if this Muse feature can be switched off (no version controlling on JS and CSS file) or will I have to use another product such as Dreamweaver?

    just to let you know, it turns out not to be the JVM (at least directly).
    the real problem seems to be the order of loading specific dll's. I noticed that the only differences (other than the blow up) was that MSVCRT.dll was being loaded far earlier than without the dummy dll.
    I removed the dummy dll I mentioned before, and went into the project workspace properties. I moved the .lib file for the dll that was actually pulling MSVCRT in to be first in the list, then in the driver program moved the .lib file for the new dll to be first in it's list.
    Everything worked.
    I'm not sure the exact bug there, but my current thought is: The MSVCRT.dll must be loaded prior to the .NET runtime dll (MSVCRT70) or say bye-bye.

  • 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.

  • Spry Tabbed Panels overwritting popup menu in IE6 and IE7 but display fine in Firefox

    I am new to Spry and Dreamweaver CS3 and would appreciate any
    help anyone can give. I am having an issue with Spry Tabbed Panels
    appearing above a navigation bar pop up menu only in IE6 and IE7.
    Everyhting works like expected in FF. I have several product pages
    that are exhibiting the same issue. I am not having this issue when
    using Spry Accordian. Would someone be able to educate me on what I
    can do to fix this problem. One of the product pages that is
    exhibiting this problem is
    Page
    with display issue

    The IE browsers implement z-indexing differently than most
    browsers ... specifically, IE browsers establish a new z-index
    context if you set the position CSS property of an element to
    anything other than static.
    What this means is that if you set something to
    position:relative ... any z-index values of children inside that
    element will be relative to that element.
    In your case, you seem to have a position relative on your
    div FWTableContainer1966866324. If you set the z-index value to
    something like 10, you'll notice that it fixes the problem.
    --== Kin ==--

  • MX and IE7

    I'm getting JavaScript errors in Dreamweaver MX regarding
    Toolbars.xml and AddressURL.htm.
    I'm trying to find out if it's strictly an IE7 issue, because
    I never had these problems before.
    Any help would be most appreciated.
    Thanks,
    Greg

    See if there's anything here that may help -
    Troubleshooting javascript errors:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19105&sliceId=1
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/
    "gcioffi" <[email protected]> wrote in
    message
    news:f69nm4$q83$[email protected]..
    > I'm getting JavaScript errors in Dreamweaver MX
    regarding Toolbars.xml and
    > AddressURL.htm.
    >
    > I'm trying to find out if it's strictly an IE7 issue,
    because I never had
    > these problems before.
    >
    > Any help would be most appreciated.
    >
    > Thanks,
    > Greg
    >

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

    Hiya,
    A rare post on the Adobe forums though I'm a frequent reader.
    Sorry about the long title.
    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 [to a turquoise like colour instead of grey] and it didn't render in BrowserLab - even after refreshing in BrowserLab.
    After restarting the Mac Pro, it did render correctly - turquoise! 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

    Hi Amit,
    Thanks for the reply:
    The link is: <!--[if IE 7 ]> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/styleIE7.css" media="screen" type="text/css" /> <![endif]--> This folows the normal CSS link. I obtained the basic code for the link from the WordPress 'Conditional Comment CSS' codex page [http://codex.wordpress.org/Conditional_Comment_CSS].
    In DW/BrowserLab panel I'm using Local Network.
    The URL in BrowserLab begins with dreamweaver: if I use http, I see a 403 authentication message [never noticed that before!].
    However, I think it works. What I was doing wrong is not selecting Preview in the DW/BrowserLab panel: just hitting refresh within BrowserLab after any changes to the IE7 CSS file. I've just triple checked this by changing the body bg colour to yellow [it worked] then to pink [it worked] and now pale blue [it worked].
    This problem was me being dim; now to get things to work in IE7 [there's a part of me that says don't worry about IE7!].
    Thanks again Amit and Bruce.
    steve

  • Using CSS and Javascript to display a div with flash in it, mozilla reloads the flash file!

    I am using CSS and Javascript to display a div with an
    embedded flash object in it. Mozilla Firefox reloads the flash file
    when the div is displayed! (I dont want this to happen, as it's
    unexpected functionality, my expectation would be that the flash
    file would not change it's state at all, and would remain in
    whatever state it was left in.)
    I was wondering if anyone has come across this issue and is
    there something I can do to prevent this from occurring?
    To be more specific, I have a single HTML page with 8 flash
    files embedded in it (yeah I know, it's a bit much). I am then
    using CSS and Javascript to display (via a numbered link (with an
    id)) an equivalent numbered div tag containing the flash file.
    Mozilla Firefox reloads the flash object that is in the div.
    Internet Explorer will not do this and will instead, load the flash
    object only upon initial view of the flash object. All subsequent
    links (in IE) will NOT reload the flash object on the page. I'm
    guessing this is some kind of difference in the flash player as an
    Active X object and the plugin, or is it just IE being clever? Or
    am I way off?
    Anyway, here is the code...

    I am using CSS and Javascript to display a div with an
    embedded flash object in it. Mozilla Firefox reloads the flash file
    when the div is displayed! (I dont want this to happen, as it's
    unexpected functionality, my expectation would be that the flash
    file would not change it's state at all, and would remain in
    whatever state it was left in.)
    I was wondering if anyone has come across this issue and is
    there something I can do to prevent this from occurring?
    To be more specific, I have a single HTML page with 8 flash
    files embedded in it (yeah I know, it's a bit much). I am then
    using CSS and Javascript to display (via a numbered link (with an
    id)) an equivalent numbered div tag containing the flash file.
    Mozilla Firefox reloads the flash object that is in the div.
    Internet Explorer will not do this and will instead, load the flash
    object only upon initial view of the flash object. All subsequent
    links (in IE) will NOT reload the flash object on the page. I'm
    guessing this is some kind of difference in the flash player as an
    Active X object and the plugin, or is it just IE being clever? Or
    am I way off?
    Anyway, here is the code...

  • On differences between JavaFX CSS and the w3c standard css

    This is a discussion topic which came to mind after reading comments in this thread Re: FXML, css and -fx-font-family
    Feel free to comment or share your thoughts on the topic.
    Note that these comments relate to the naming and semantic meanings of css tags, and not the syntax and parsing of css (as both w3c css and javaFX css seem to be equivalent in the later regard).
    You know, sometimes I find JavaFX's lack of certain css features refreshing. It is nice to have all, well, almost all, of the JavaFX CSS documented on one page. I think if you were to do the same thing for w3c css then it would end up with a much larger, more difficult to understand document and even what the contents of that document should be would probably be pretty controversial, in the same kind of way that the HTML5 specification ended up being. Microsoft contributed over 7000 tests to w3c just to cover only a subset of the css rules available in browsers today. The webkit project lists almost a thousand open CSS bugs: https://bugs.webkit.org/buglist.cgi?product=WebKit&component=CSS&resolution=---. So implementing even partial w3c CSS support is a complex project.
    When I first started using JavaFX CSS I found the differences to w3c CSS quite jarring, and it was hard to account for them. Now that I am used to JavaFX CSS, I don't have as much of an issue. The difference in names and semantics is going to be an impediment to designers working on JavaFX who are familar with w3c CSS - but the designers will quickly also discover that FXML is not HTML and Java is not JavaScript and JavaFX deployment is not HTML deployment. So, perhaps, in the larger picture, it is not as big a deal as it would seem. Still, one can't help think that any impediment to people easily picking up and adopting JavaFX is doing the technology a disservice.
    There are other advantages in having the JavaFX CSS in it's own namespace to w3c css, in that it can evolve seperately, it is not expected to be exactly the same because it has a different name, it is not expected to fully implement w3c css as browsers do because it's clearly a different thing by name, etc. There is even precedent for it in the use by mozilla of moz- CSS prefixes and webkit css properties http://css-infos.net/properties/webkit - the web as not as standard as a lot of people propose. JavaFX CSS is backing a JavaFX rendering engine and not an HTML rendering engine. It is quite remarkable that Oracle was able to build and make available a CSS model for JavaFX that feels as familar as it does to w3c css, as w3c css is targeted very strongly toward styling a completely different technology set (HTML markup and document object model).
    It would be useful to have a tool which translates w3c css to approximations of JavaFX css and vice versa, or the ability for JavaFX to have a mode (perhaps a boolean value when a stylesheet is loaded) to perform an automatic alias or mapping of w3c css to javafx (at least for the subset of w3c css which would make sense to automatically translate to JavaFX css). I haven't checked the JavaFX jira in detail, so perhaps a request for such support already exists - perhaps it is under the private http://javafx-jira.kenai.com/browse/RT-9272 jira.
    The JavaFX css model is really powerful and I have found really useful some of the additions that it adds above the baseline 2.1 css that is found consistently in browsers. With the upcoming Java CSS object model http://javafx-jira.kenai.com/browse/RT-17293, you will also get better programmatic access from Java.
    So, nice work on building and implementing this complex feature . . .

    Thanks for the feedback. Closing the gap between JavaFX CSS and W3C CSS will be an evolutionary process. It would be nice to use a standard's based stylesheet but there is not always a 1-1 mapping to JavaFX. But for those properties that can be mapped, it is something that should be supported. For example, we should be able to handle "font" or "-fx-font".
    I have made http://javafx-jira.kenai.com/browse/RT-9272 public.

  • Java and Display Issues in Plus

    Hi everyone
    Please reply whether you have or have not seen any of the following:
    I'm working on a client site where we have some machines working just fine and others are giving corbaserver errors. Copying data from a worksheet into Excel using CTRL-C | CTRL-V does not seem to work for some machines and so they have to use the Copy and Paste buttons. Curiously, when they do this they get an additional empty column whereas on the machines where CTRL-C | CTRL-V works they don't get the blank column.
    The other issue we are seeing is that after a short period of time, Plus stops running the queries automatically. Any change the user makes, such as adding a new item, adding a sort, moving a column position does not take effect until the Refresh button is clicked.
    There is a combination of IE6 and IE7, with all machines being XP with most on SP2 and many on SP3.
    I am suspicious of the XP SP3 when combined with IE7 but would like to know whether anyone else has experienced issues. We are running 10.1.2.3 with CP4 and our Java is Sun 1.6.0_15
    Please reply with either a we are having no problems with this combination or whether you have noticed similar issues. If you have seen issues and got a fix or workaround please let me know. I'm also interested in knowing which combination of Java, Discoverer, operating system and IE works for you.
    Best wishes
    Michael

    Michael,
    Our production server was recently upgraded to 10.1.2.3, CP5 with Java 1.4.2_06. Prior to this upgrade we recommended that users function with I.E. 6.0 and Firefox 2.0. We experienced issues with later browser versions. On my personal workstation I have Windows XP, SP2, I.E. 6.0, Firefox 2.0 and now Java 1.6.0_16. We are now testing the later version of Java on our test OAS. And we are testing out the later browser versions as we speak. The first thing that I would recommend is to add the Java Runtime parameter of -Xmx256M, in the Java Control Panel. I had some session locks prior to my adding this parameter. I am testing access to both servers with Java 6 installed on my workstation. Access to Java 6 performed better after I added the runtime parameters. Access to Java 4 with I.E. gives a warning message and performs very slowly. Mozilla Firefox does to seem to care, no warning and similar performance as Java 6 on the server side. I have not done very much testing with I.E. 7.0 and Firefox 3.0 as of yet with the newer Java version. I am now accessing that environment and it is running very slowly. Part of the issue may be my PC performance but I do not like what I see. Way too slow. This is the browser functionality not the workbook execution time. I added the Java Runtime parameter of
    -Xmx256M and it now performs better.
    I did the Ctrl-C|Ctrl-V with both I.E. and Firefox and did not experience the problem you discribed. I aslo did not encounter the other problems that you reported. We the corbaserver errors in a Discoverer pop-up window, Java Console or OEM session log?
    You may be correct with the SP3 as being at least one of the culprits. I do not have that patch on either workstation so I cannot test for you.
    Jerre

  • Firefox OS is not displaying correctly. it appears that the CSS and JS are not rendering! Any help would be most appreciated!

    I would have preferred to show anyone a screenshot of the web pages, but there is not an attach file on this forum. Anyway, with only Firefox OS , not my other browsers, the web pages are not rendering correctly. For example on Facebook there is no header or footer. JS is active in the browser and as I said Chrome and Safari are NOT having any problems. I am surmising that the CSS and JS files are somehow not being displayed. I may be very wrong, but I would gratefully accept any help someone has to offer. Thank you and have a great day!
    Theresa

    Hi Lufte,
    I'm sorry to hear you are having issues with the rendering of some pages on your Firefox OS device.
    Please create a new question in the thread so that we can track your issue separately:
    * [https://support.mozilla.org/en-US/questions/new Ask a new question]
    Please also provide the device model and version that you're currently using, and whether this issue started recently. Please let us know if you also notice any issue with the time and date displayed in your device.
    Thanks,
    - Ralph

  • How can I verify the SSL service enabled in CSS and SCA ?

    I'm working for the OpenSSL vulnerability for CSS and SCA. How can I check if the device enabled the SSL service ?
    - https://x.x.x.x --> cannot access.
    - telnet x.x.x.x 443 --> I got a blank screen. I think this should be connection rejected if no SSL enabled.
    Please guide me what command should I issue on the device(CSS and SCA) to verify the SSL service enabled ?
    Thanks,

    To see what ports are being listened to.
    On the SCA, you can do "show netstat"
    On the CSS, you would go into debug mode and do
    symbol-table load
    shell inetstatShow
    Michael

  • RH 11 CSS Mapping Styles issue with Word 2013

    Hello members,
    Any help will be much appreciated.
    Platform: Win 7, RH 11, Word 2013 however, using an existing Word Template that was created in Word 2007.
    HISTORY:
    Six months ago, an upgrade of RH8 to RH11 took place (smooth, no issues reported). Please note, I have no "easy" way to verify if there was a problem in RH8 (all projects are upgraded, and old builds are backed up on IT server).
    There are existing Styles created in RH and in the Word Template (e.g., Heading 1, Heading 2, Heading 3, Normal, normal_bold, etc.). These existing Styles have no mapping issues hence, RH CSS recognizes their corresponding Word Styles.
    ISSUE:
    RH11 CSS does not recognize New RH Styles and Word Styles.
    NOTE: Styles are the same type. “For example, character to character, paragraph to paragraph, table to table, and multi-level list to multi-level list” (http://help.adobe.com/en_US/robohelp/robohtml/WS5b3ccc516d4fbf351e63e3d11aff59c2a0-7ee4.ht ml#WS21E2B5E4-C4AC-47b2-9D4B-D548EA9E3C04).
    Things Tried:
    Converted (SaveAs) my template .dot (Word 2007) to ".dotm" (Word 2013) = No change in issue mentioned above.
    What do I see when I create new Styles in RH CSS and Word Template: I am able to map Table and Multi Level List.
    Purpose: Working on a documentation standard project. Creating New Styles ‘based on’ existing styles. For example:
    RH CSS
    ListBullet
    Style: Paragraph
    Formatting: Font =10pt
    Indents: Left = 36pt
    Spacing: Before = 0px
    Paragraph: Alignment = Left
    Indentation: Left = 18pt, Right = 0pt, Special = Hanging (By 18pt)
    Spacing: Before = 6pt, After = 0pt, Line Spacing = Single
    Advanced:
    Word Template (.dot)
    ListBullet
    Style: Paragraph
    Style Properties: Name = ListBullet, Style type = Paragraph, Style based on = Normal, Style for following paragraph = ListBullet
    Formatting: Font = Arial Font style = Regular, Size = 9pt, Font color = Automatic (black), Underline style = none
    Paragraph/Indents & Spacing: Alignment = Left, Outline level = Body Text
    Indentation: Left = 0.25", Right = 0", Special = Hanging (By: 0.25")
    Spacing: Before = 0pt, After = 6pt, Line Spacing = Single, Selected (Don't add space between paragraphs of the same style)
    Paragraph/Line & Page Breaks: Pagination = Window/Orphan control, Tight wrap = None
    Bullet Format: Font = Symbol, Font style = Regular, Size = 9, Font color = no color
    Problem I am having is as follows:
    RH Wizard section - Print Document Appearance
    Project’s CSS Styles (Used Only or All)
    ListBullet
    Microsoft Word Styles (all)
    Unassigned – Use style in project) drop-down list
    The Style “ListBullet” does NOT show in the list
    NOTE: This anomaly I just reported happens for ANY new ‘Paragraph Style’ I create. If I create a List/MultiList, and the names of the Style are the same in RH and Word, RH Wizard automatically maps them. However, reading on multiple forums, authors have reported problems with Indentations (i.e., Word over extends the indentations); I have see this as well.
    PS - Happy Holidays to you and your families. My Best, ~PM
    PSS - Hi Peter ... I reviewed your site and this site, and Googled as well before posting.

    Thank you Peter and Amebr for your assistance. I ended up using RH Multilevel List Style, configured, and created an identical List Style in Word. I created a Single and a Multilevel (e.g., Level = bullet, Level 2 = squares); their challenge is matching RH indents with Word Indents... It's sort of a bear since RH does not have the Format Paragraph option (ref. drop-down) like Word Lists -  Numbering functionality.
    After generating my print document mu Bullet style reads "Normal (Web)"; even though the RH CSS Wizard recognized Word List Style I created (Ref. Font: Symbol, Font color: Black, Indent: Left: 0.15", Hanging: 0.25", Outline numbered + Level: 1 +, Numbering Style: Bullet + Aligned at: 0.15" + Indent at:  0.4", Priority: 100, Based on: No List.
    Question: Would anyone out there know why is when I highlight my bullet list to verify the correct Style (with the Styles pane open) and I see the "Normal (Web)" [its Style type = Paragraph and Style based on = Normal) is selected? If it came through (from Rh) as a true Multilevel List Style, I should not see anything.
    Happy Holidays!
    ~PM

  • Can I include both CSS and HTML codes in one Open HTML Editor.

    Somehow Cell phones are not properly reading css codes. Is there any way to include both CSS and HTML codes in one Open HTML Editor?

    Hammad, their code is fairly mobile friendly.  Per my other discussion with you ( http://topliners.eloqua.com/thread/8532 ), Eloqua's code is responsive for the most part.  Most of their issues lie with the styling of the email where you will get different fonts and different sized fonts throughout the email and some other minor display issues.
    What you are trying to accomplish is extremely difficult to do because you do not have the access to the HTML to better control how the responsive template works which is why the Eloqua templates (and most ESP templates) stick to the more basic side of emails.
    If you want to use Eloqua's WYSIWYG to make their responsive email you can do so, but I would recommend deleting all their body text before editing anything because of the inconsistencies in their code.  Otherwise, I think you would be better off coding the emails outside of Eloqua using a 3rd party editor whether it's something more robust like Dreamweaver or Coda, or whether you feel comfortable working in a more text environment with programs like Notepad++ or Brackets.
    At the end of the day remember you are paying Eloqua for these and if you choose to stick with the WYSIWYG and you are not getting the results you expect you need to tell Eloqua through your support channels.

  • CS3 Loader component and IE7

    I'm not too sure I want to troubleshoot anymore when it comes
    to the Loader component and IE7, but I wanted to check if anyone
    has anything new on the matter. All searches concerning this issue
    show unanswered posts, so I guess it's just another bug/conflict
    that Adobe isn't concerned about or if the issue is just with IE7.
    The main issue is when loading images into the loader component,
    scaleContent set to default (true), autoLoad set to default (true),
    when images are loaded, they are not always aligned properly in the
    center. Plus, most of the time I see a flicker of the image
    appearing either on the top left or bottom left of the loader
    before the image appears as it should. I've even tried AS2 to
    center the loader.content._x and loader.content._y on
    listener.complete (see code), but randomly the loaded image's (0,0)
    position seems to be in the center of the loader (I was going to
    provide a screen shot of what I'm talking about, but I think the
    explanation is clear). All the above works great on Firefox, Opera,
    Safari, and even the crappy AOL browser, but not consistently on
    IE7.
    Is this a known issue or an unsolved bug?
    Unless anyone has an answer to the above, I would like to
    also ask around about purchasing loader components online. I've
    seen several, but wanted some testimonials from people who have
    used them.
    If anyone wants to visually see what I'm talking about, go to
    Design Visions of
    Austin and click "on the boards". If you compare the website
    using Firefox versus IE7, you will see what I mean.
    Thanks to anyone who can help. I hope this post doesn't go
    unanswered. In the past, I've helped a lot of people, so I would
    appreciate if someone could help me for once :) thanks again...
    I just realized... two variables I mentioned in my code were
    assigned prior to the attached code.
    var cpLoader:mx.controls.Loader;
    var cpLoaderWidth:Number = cpLoader.width;
    var cpLoaderHeight:Number = cpLoader.height;

    The flicker happens on both FF2 and IE7, and is because you
    are positioning after the load is complete. To solve this, set the
    visibility of the Loader to false (cPLoader._visible = false;)
    before moving the content, and to true after. IE (you could try it
    this way, but it might not work)
    cpLoaderListener.complete = function(evt_obj:Object) {
    mcPreloaderClip._visible = cpLoader._visible = false;
    var cpLoaderContentWidth:Number = cpLoader.content._width;
    var cpLoaderContentHeight:Number = cpLoader.content._height;
    cpLoader.content._x = (cpLoaderWidth - cpLoaderContentWidth)
    / 2;
    cpLoader.content._y = (cpLoaderHeight -
    cpLoaderContentHeight) / 2;
    cpLoader._visible = true;
    It would be better to set cpLoader._visible = false on the
    button click that loads the image, maybe with an automatic fade out
    implemented to make it smoother. Then setting it back to true after
    moving it fixes the flicker effect.
    As for the centering not working in IE7. The very first image
    does not center properly in IE7, but after that everything works
    identical to FF. I am unsure how to fix that issue. I have always
    implemented a centering script myself to ensure that things get
    centered properly, and have not yet had any problems with it.

Maybe you are looking for