Correct in IE but not in FF

My design consists of a body tag, a wrapper tag and a content
tag - one positioned on the other. Each tag is positioned so the
tag behind shows all around (by setting margins on each tag). In IE
it looks as intended, but in FF the content tag changes from
centered position to top position (aligning the top of the wrapper
tag, so that you do not see the wrapper tag on the upper side of
the content tag). Why is that?
I have tried everything short of the correct one, evidently.
Thanks for any advice.

> One last thing...... I understand all your changes to my
rules, except 2
> things: 1: you have "display"->inline - I have read
nothing about this
> value in
> the manual, what does it do (when I try to change it to
another value,
> nothing
> happens, so it's not evident..).
It does nothing to any browser other than IE, and in IE, it
prevents the
"double margin bug".
> 2: in #navBar you have changed my margin-left: 50px to
your padding-left:
> 40px
> - why padding and not margin?
To understand this you'd have to understand the box model -
padding is
inside the box while margin is outside the box.
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
==================
"spokmik" <[email protected]> wrote in
message
news:f9v5nc$o1c$[email protected]..
> One last thing...... I understand all your changes to my
rules, except 2
> things: 1: you have "display"->inline - I have read
nothing about this
> value in
> the manual, what does it do (when I try to change it to
another value,
> nothing
> happens, so it's not evident..).
> 2: in #navBar you have changed my margin-left: 50px to
your padding-left:
> 40px
> - why padding and not margin?
> Thanks for your help - it's largely valuated!!
> Mik
>

Similar Messages

  • Website page displays and javascript runs correctly in IE8 but not in Firefox 3.6.10

    website page displays and javascript runs correctly in IE8 but not in Firefox 3.6.10

    Can you post a link?
    Then we can take a look.

  • Page Publishing Correctly in Safari but Not in Firefox!

    Hello!
    Question: When I publish my page, it looks exactly like it should in Safari but not in Firefox! Why is this and how can I correct this?
    Thank you!

    Hi
    Please share the page url , so that we can have a look.
    You can pm me the site url.
    Also let me know the browser version you are using.
    Thanks,
    Sanjit

  • Ul Menubar Positions Correctly in Firefox but NOT in IE

    Hi I am having problems with my ul menubar. It displays correctly in dreamweaver and firefox but not in IE 9. Below are screenshots of what im trying to achieve. I placed the ul menubar where i want it (horizontally dropping down rather than vertical) and made its position absolute but for some reason IE does not like this. If there is anyone out there who would be willing to help me i would me most grateful!! Im relatively competent with dreamweaver cs5.5. Much thanks!
    Here is Firefox working properly:
    Here is Internet Explorer not working properly:
    Here is the menubar code:
      <td height="27" align="right" nowrap="nowrap"><ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a class="MenuBarItemSubmenu" href="../html/index.html">links</a>
          </li>
        <li><a href="../html/portfolio.html">contact</a>      </li>    
        <li><a class="MenuBarItemSubmenu" href="../html/profile.html">profile</a></li>
        <li><a href="../html/contact.html" class="MenuBarItemSubmenu">projects</a>
          <ul>
            <li><a href="#">industrial</a></li>
            <li><a href="#">institutional</a></li>
            <li><a href="#">commercial</a></li>
            <li><a href="#">residential</a></li>
            <li><a href="#">award winning</a></li>
          </ul>
        </li>
        <li><a href="../html/links.html">home </a></li>
      </ul></td>
    Here is the menubar script:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    clear: right;
    float: right;
    position: relative;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: pointer;
    width: 80px;
    float: right;
    height: 27px;
    text-align: right;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    position: absolute;
    left: -1000em;
    top: 27px;
    display: inherit;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: -200px;
    top: 27px;
    position: absolute;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 120px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    height: 27px;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    background-color: #FFF;
    color: #003366;
    text-decoration: none;
    height: 17px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    text-transform: lowercase;
    vertical-align: middle;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #FFFFFF;
    height: 17px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    color: #FF9900;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #FFFFFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    height: 17px;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    height: 17px;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: right;
    background: #FFF;

    Spry Menus 10 Commandments
    http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php
    Fixing Spry Menus 1.6.1
    http://www.projectseven.com/testing/adobe-bugs/spry-menus/
    That said, Adobe abandoned the Spry framework and you may want to do the same. 
    http://blogs.adobe.com/dreamweaver/2012/08/update-on-adobe-spry-framework-availability.htm l
    Nancy O.

  • Pictures round-tripped to Elements are correct in Browser but not in Viewer

    Hi all,
    This is a bit weird.  When I edit a photo in Photoshop Elements 10 (and then "save" and thereby send it back to Aperture), the edited photo shows up correctly edited in the Aperture browser, but it's uncorrected in the viewer.  I always use the "Split View," and so the corrected photo appears among the thumbnails, but when I click on it, the photo in the viewer doesn't have the PSE corrections!  Weird.  This worked well for many many months, but now doesn't seem to work.  If I close out of Aperture and come back in, the photos are correct in the viewer and the browser.  Any ideas?  (These are correctly saved -- not "saved as" -- in Photoshop.  And it worked well for months.  No need to discuss saving and round-tripping.)  Thank you!

    Mark,
    maybe this is caused by this bug:
    Aperture 3.2.3: Viewer does not update after editing an image in external editor
    http://support.apple.com/kb/TS4237
    If not, post back
    Regards
    Léonie

  • APEX page displays correctly in Firefox but not in IE7 nor IE8

    I have an APEX 4.0 page which displays two columns of data. In Firefox, where the border for column one should end, it does. Then the column two data is displayed right next to column one (correctly). In IE, there is a gap of blank space between the columns, which makes it necessary to scroll over to see all the data (incorrect). I did find a post that seemed to address this very issue, however, the suggested fix did not solve the problem for me. The regions are defined as follows:
    Sequence 1 - Column 1 - Breadcrumbs region - Breadcrumb region template - Type = Breadcrumb
    Sequence 10 - Column 1 - Lot Information - Reports region - Type = HTML Text
    Sequence 10 - Column 2 - Burial - Reports region - Type = SQL Query
    Sequence 30 - Column 2 - Documents - Reports region - Type = SQL Query (updateable report)
    Sequence 40 - Column 2 - Upload Document - Reports region - Type = HTML Text
    With the exception of the breadcrumb region, all regions are set to Display Point = Page Template Body (3. items above region contect)
    I have tried a number of different combinations between the page template, display points, etc. and have tried different width settings in the html source, but have not been able to remove the gap between the columns.
    Does anyone know of a way to resolve this? If you need more information, please let me know. Thank you for any help you can provide.

    You could put all but the breadcrumb into a region/subregion setup...
    What theme in APEX are you using?
    Thank you,
    Tony Miller
    Webster, TX
    While it is true that technology waits for no man; stupidity will always stop to take on new passengers.

  • Why do books sort correctly in iTunes but not in iBooks?

    I've filled in all necessary info on the sorting tab and, while all my books sort perfectly in iTunes, on syncing my iPhone and iPad, iBooks does not display the books in the correct order no matter what selections are made.
    My intent is to have the books in my library, be grouped together by series and displayed in the correct order one would read the series.  I'm using Sort Name with a series name and series position designation number along with Sort Author as Last, First.  But no luck.  I've tried reading through other threads and have yet to come upon a fix. Any suggestions?
    Thanks.

    The organizing capabilities of iBooks are described in this Apple note in the Features section:
    http://support.apple.com/kb/HT4059
    You can ask for improvements via
    http://www.apple.com/feedback/

  • Flash Player Correct and Installed but not working

    Hi,
    I've got the 64bit Windows 8.1 and the version 15 of the flash player.  I've followed all the steps and can not access anything that requires a flash player.  I've checked I've got the latest update, I've enabled the shockwave thing and deactivated activeX, I can see the clouds moving in the animation but I can not access any apps like Candy Crush or Reading Eggs.
    Any ideas what I can do please?  It was working yesterday lunchtime but seemed to stop sometime during the afternoon.  Thought following all the steps again and restarting would correct it but nothing.
    Thanks

    Still having issues two days later!!!!
    Possible to have some advice please.
    This is what I get when I try to check for updates using your links.

  • TS1702 Supercam Pro update.Just downloaded update 24-05-2013 and now cannot connect to DVR.Entered correct http address but not connecting,anyone else having same problem?

    Supercam Pro,latest update yesterday 25-05-2013.Now cannot connect to my DVR.Anyone else having problem with this update,worked perfectly before???

    The OP is correct, I have done many tests.  With IOS6 there appears to be a dns issue in some cases with IOS for both ipad(2) at lease (my wife won't let me upgrade here v1) and the iPhone4s in my case.  Pretty easy to diagonse, I wish Apple would fix it.
    1.) I use a Juniper 5GT wireless firewall and all of my other devices (many apple, ipad, MBP, iMAC,3 ipods etc) are fine: Not ipad2 or iphone4s running IOS6
    2.) after upgrade nothing worked.  narrowed it down by messing with dns (I have my own dns server)
    3.) Strange thing; dns works over MiFI (Verizon) and Carrier
    4.) confirmed that it is a dns and not network issue.
    -down load free tool called ping-scope-lite.   (obviously you need to turn off wifi to do this)
      http://itunes.apple.com/us/app/ping-scope-lite/id431500107?mt=8
    turn on wifi
    - ping Level3 dns server 4.2.2.2 or Googlesdns servers 8.8.8.8 or 8.8.4.4 these worked.
    -now ping by name google.com or ipchicken.com
       - try others; same result.
    Apple did say that they would give me another iphone 4s: I just wasn't sure that would fix my issue.  I tried downgrading to 5.1.1 but I got an error saying my device wasn't able to do so (tried even blocking itunes from contacting Apple)  I whis this could be fixed.  I did even have it working using my own dns server but now I can see that my phone over wifi isn't even trying to make a dns request now.
    Stuck

  • What am I doing wrong here? Vids look correct in FCP but not in Quicktime..

    Hi,
    I have a few quicktime movies that I made a long time ago. I have dragged them to my hard drive and they look great and play exactly how I edited them in Final Cut Pro. However, when I open them in Quicktime or try to play them into any other format (Flash) they appear wider.
    Now I am confused as it appears every movie I have ever saved seems to be distorted when I play it in Quicktime.
    Are there some settings within FCP or Quicktime that I am not aware of?
    Are both programs accurately playing what is recorded?

    I am having this exact same issue. My sequence is 352x288 the video looks great in FCP but every time I Export this sequence straight out through QuickTime (not QT Conversion or Compressor) self-contained and using the current settings it plays back in QuickTime as 720x480 (640x480) millions in DV format. I even tried to force the export to a customized setting with the 352x288 frame size and it still plays back at 720x480 making the video look fuzzy and stretched. We've already spent a few hours testing other options with no success.
    Oh and what's odd is if I open the same exported file in FCP's Viewer the size is correct and when I view the exported file's info (Apple+I) it says Dimensions: 352x288. Codec is DV/DVCPRO - NTSC. One thing I just thought of while typing this is would changing the codec make a difference since the original footage is 720p from an HVX200 camera? If I should change it what should I change it too?
    The viewers will be watching this in QT Player. I'm using FCP7 and QT7 also tested with QTX with the same results.
    Any idea is better than none, thanks!
    Lance

  • Links I get for a photo-sharing website open correctly in IE but not in Firefox 35.0, which goes to the right site but the wrong page. Previous Fox was fine.

    In the past, clicking on the link in Thunderbird opened the page at shutterfly.com correctly in FF (default browser). Now it goes
    straight to one of the options for the photos that the link referred to.
    Copy & paste the link directly into FF gives the same dud result - whereas IE opens it perfectly.
    I have also tried disabling Adblockplus and my various plug-ins.

    guigs2 - I've tried that but no joy. In fact, the about:config was set to user
    defined, so I reset it to default as advised and tried the link again. No change.
    jayelbe - Somehow I don't think the sender of the link would like having his
    Shutterfly page floating around the place, even if its in a good cause. Sorry!
    You could, of course, set up a Shutterfly account (its free), upload a pic and
    share it with whoever - the invite to share is sent direct from the site.
    Regards, Crimble

  • Color Management: Light image shows correct in Photoshop, but not in Illustrator

    Have a light cyan (13% dot max gradient piping the text) emboss letters spot channel .psd placed in AI. In Photoshop the image shows up great, but in Illustrator is notvisible (goes to white).
    Color profile is good & generated with hardware device i1Profiler
    Same color settings in both AI & PS-  North Amercian General Purpose in both
    Assign profile tried both  Working CMYK US WEB v2 & don't color manage
    Illustrator (left) Photoshop (right)

    Figured it out. Happening because this is spot channel. For my purpose am creating a renders of a package, so converted the spot channel to CMYK.
    Illustrator for as long as I can remeber has nto worked perfectly with spot chanels, the colros are off in Illustraor, and when you print a fiery they are off. Only solution I found to keep a spot cahnel intack, is to add a dummy white channel in the layers palette for the sahpe of the spot channel. While this works great with spot chanenls that are built without tints, nto so well in a cse liek the one above.
    Kow I am not the only one to have discovered the dummy white trick, as printers such as SGS are using this. Can anyone offer any more insight into why we have to use a dummy white layers, and how to keep a spot channel intack on files like this one with the light tinted gradation???

  • Flash mask appears correct in Safari but not IE?

    Hi,
    This is weird because I cannot see how a browser can have any affect on a SWF file animation. This SWF contains masking of images. The SWF appears perfectly in Safari, and for some strange reason, one of the three masks is not applied when viewing the SWF in IE (as if the image is 'released').
    Any ideas as to why this might be or what I can do to stop this from occurring?
    Thanks!

    Can anyone help me with this issue?
    Thanks!

  • Trimmed podcasts play correctly in iTunes but not on ipod shuffle

    There's some short podcasts from NPR that have commercials at both the beginning and end. They're almost as long as the main content. I've been able to use the "Batch Trim Start or Stop Time (Seconds)" script from Doug's Applescripts for Itunes website to trim 15-20 seconds off the start and stop times. It works when I play them in iTunes, the podcasts start and stop exactly where they're set. But if I sync these trimmed podcasts to my iPod Shuffle then either the start or end time is ignored, or the podcast just abruptly ends in the middle.
    Any ideas what's happening?

    Anyone know why the start and stop times aren't respected on the ipod but are in iTunes when using the batch trim script?

  • HELP- Images displayed correctly in Firefox but not IE

    I cannot figure out (I'm a newbie) how to set the code so
    that the picture on my entry page looks the same in terms of
    placement in IE and Firefox In Firefox, it's perfect but there is
    empty space below the image in Internet Explorer. This is driving
    me crazy!

    On Thu, 25 Jan 2007 12:50:37 +0000 (UTC), "majpix"
    <[email protected]> wrote:
    >I cannot figure out (I'm a newbie) how to set the code so
    that the picture on
    >my entry page looks the same in terms of placement in IE
    and Firefox In
    >Firefox, it's perfect but there is empty space below the
    image in Internet
    >Explorer. This is driving me crazy!
    Can we see the page so that we can see where the image is in
    the code?
    Sounds like a padding/margin problem.
    Steve
    steve at flyingtigerwebdesign dot com

Maybe you are looking for

  • IPhone 3G's Watch app and time setting not functional

    Hi guys. I have this little problem with my iPhone 3g 2.1. It won't open the Watch app, nor the "Date & Time" in the general settings. Everytime I try to open any of 'em, it just simply returns to home screen. Anyone got this problem? How do you solv

  • How do I know if Satellite A100-216 has a dual mode pad?

    Hi, I bought my laptop this week, and in the manual it says that some models in this series have got dual mode pads rather than just a mouse pad. How do I know if my model has it? Do I have to activate something, or would it just work automatically i

  • Add aspx page to Page Library / U

    I am using SPO-D. I have a need where I have to accept user input and without persisting in SharePoint, pass the information to a web service. Curious which of the following solution options are supported and which is recommended.  1) With Server Sid

  • FW 3.0 Photo app not functioning properly

    Has anyone elso noted that the 3.0 Photo app is broken? The orientation can no longer be changed. So now landscape photos viewed while holding the iPod in the landscape orientation are displayed on their side. There does not seem anyway to flip the p

  • Ipod click wheel broken? Help please.

    I've had this Ipod for years, it sort of stopped working one day I don't remember exactly how/why but I just recently found it again and plugged into my sisters Ipod Dock to see if it would work, and it did charge up and would play songs. So I guess