Float displays fine in DW but not in browsers

I'm not posting any code at this stage as I realise this may be a very simple question!
I have a simple panel with an image and some text floated around it.  This displays fine in the Dreamweaver 8 Design view, but in both IE8 and Firefox, the text does not float, but appears below the image.
Is this something obvious, or should I post further details?
Thanks.

For best results, reply through the web forum; not e-mail.
Thanks, Nancy - I would have done so, but had big problems getting through to a lot of major web sites in the US last night, so couldn't use the forum.  OK this morning, and have noted the blank posts.  Thanks to a FAQ I now realise that I can't use "Xxxx wrote:" in an e-mail post, nor use a line of dashes as separators - both of which I did in my replies!  Ho hum...
So, now that I'm back in contact, the answer to your questions is yes - I think so!  Time for some code:
#container {
    width: 56%;
    height: 1480px;
    position: absolute;
    border: none;
    top: 40px;
    left: 9%;    
    background-color: #FFFFFF;
    clear: both;
.longshot {
    float: left;
    width: 262px;
    <div id="container">
      <img class="longshot" src="Photos/LongShotVignette3.jpg" />
      <p>Quite why the property is called &quot;Lo Sixto&quot; is  lost in the mists of time, but there were certainly five popes of  that name, the latest of whom lived during the 15th century.</p>
      <p> </p>
    </div>
I realise the answer is probably trivial, but I have picked up Dreamweaver again after a long break (hence v 8!) and to say I am rusty would be an understatement!
Phil

Similar Messages

  • Tasks display fine in iCal, but not in Mail

    In iCal I have my task list on the right which is showing all my tasks just fine. However, in Mail I have an IMAP account with a Apple Mail To Do folder instead of a special entry in the source list for tasks. I used to have a special entry for that, but now I only have this regular IMAP folder.
    When I select the Apple Mail To Do folder I do see entries for tasks in the message list pane displaying as regular mail messages but without a sender. When I select a task entry the message view pane shows the task as a mime-attachment icon.
    How can I restore the normal task view in Mail?

    I upgraded to Snow Leopard and now my Mail looks like this: http://twitpic.com/grjb5
    I believe I shouldn't see that 'Apple Mail To Do' folder under my IMAP account and I guess I shouldn't be able to access my mailbox from the tasks entry (the one with the globe icon).
    Anyone has any idea how to fix this?

  • Website displays fine in Preview but not when 'Published' to BC

    Hi
    I've posted this question twice in the Adobe Muse discussion forums and had zero response so hopefully people with more experience form the BC perspective might be able to shed some light on this.
    Basically I have a subscription to Muse and with that the ability to host one site with Business Catalyst. When checking the first site I designed I'd use 'Preview in Browser' and the site occasionaly displayed incorrectly, so I changed my habits to publishing the work-in-progress site to the BC url with this current site.
    Unfortunately there are multiple display problems with doing this; the two images below show the difference between 'Publish' to the BC domain and 'Preview site in browser'.
    I've cleared the cache of the browser multiple times and used both Firefox and Safari and the problem still remains. I'm assuming it's a problem with Business Catalyst?
    Does anyone have a solution for this? Has data become corrupted in BC, and if so is there a way of 'flushing' the data held on the BC site clean to start from scratch?
    Would really appreciate some help here as it's impossible to show my client the current state of the site
    Thanks in advance
    Phil

    Hi Liam
    Tried it in Safari and Firefox (I'm on a Mac), cleared the cache and still was getting issues.
    http://httpwiles06businesscatalystcom.businesscatalyst.com/clients.html
    If you go to the client page there I'm getting the images behing strangely like the top pic I posted, also the top type image has moved over.
    i set up a subdomain on my own site to use as a test space for this client site and it works perfectly; that's on
    http://martinedwardstest.phunction.net/
    Appreciate any fedback, opinions or help on what might or might not be wrong.
    Cheers
    Phil

  • I have home sharing on but can't see my library on the computers icon. iTunes does display my purchased tunes but not my own imports.

    I have home sharing on in iTunes but can't see my library when I use the computers icon on Apple TV. iTunes does display my purchased tunes but not my own imports.
    I can play my own tunes by selecting them on my iMAC and directing them to Apple TV. I think that I should be able to see my entire library on Apple TV shouldn't I?
    Am up-to-date with iTunes and using Mavericks OS. I am connecting to Apple TV with an Airport Extreme 802.11n Wi-FI and a brand new Apple TV.
    Thanks for any comments,
    Roger

    Okay, so HomeSharing is not working.  Most likely due to a network issue.
    Is the ATV and computer running iTunes actually on the same network?  Many new routers create seperate networks for the wired and wireless portions of the local network.

  • Dreamweaver text looks fine in Safari but not Firefox NEED HELP!!!

    Dreamweaver text looks fine in Safari but not Firefox, all my text goes out of alignment and the fonts look like different sizes. Please let me know your thoughts. Here is a link to the page I'm having problems with. http://www.alexandrasantibanez.com/bio.html

    I had the same problem for days what a waste of time trying
    to figure out code... the code was fine. I was running flash player
    7.0 Upgrade your flash plugin to 9.0 and it should work fine in
    Firefox and IE. It did for me.

  • A javaScript code that runs fine in IE but not in other plz help

    Hello friends,
    plese help me in getting the code for Opera and Mozilla browsers. The following code runs fine in IE but not in other browsers. it show titlebar in other browsers. What to do disable titlebar in other browsers? plz help
    <html>
    <head>
    <script>
    //Frameless Banner Popup
    // Set the url of the banner popup window page
    //var theURL = "index.htm";
    var theURL = "/cgi-bin/login";
    // Set the title of the popup window
    var title = "Login"
    // Set the size of the popup window
    var windowWidth = 350; // cannot be less than 100
    var windowHeight = 350; // cannot be less than 100
    //var windowWidth = window.screen.width; // cannot be less than 100
    //var windowHeight = window.screen.height; // cannot be less than 100
    // Set the position of the popup window
    var windowX = ((window.screen.width/2) - 175);
    var windowY = ((window.screen.height/2) - 175);
    // Set true to auto-center (positions will be ignored)
    var autocenter = false;
    // Set true for popup to close when launch page does
    var autoclose = false;
    var s="width="+windowWidth+",height="+windowHeight;
    var beIE=document.all?true:false;
    var done=new Object("no");
    if(autocenter){
    windowX = (window.screen.width-windowWidth)/2;
    windowY = (window.screen.height-windowHeight)/2;
    function doAgilePopup(){
    if (beIE){
    agilePopper = window.open("","popAgile","fullscreen,"+s);
    agilePopper.blur();
    window.focus();
    agilePopper.resizeTo(windowWidth,windowHeight);
    agilePopper.moveTo(windowX,windowY);
    var frameString=""+
    "<html>"+
    "<head>"+
    "<title>"+title+"</title>"+
    "</head>"+
    "<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
    "<frame name='top' src='"+theURL+"' scrolling=no>"+
    "<frame name='bottom' src='about:blank' scrolling='no'>"+
    "</frameset>"+
    "</html>"
    agilePopper.document.open();
    agilePopper.document.write(frameString);
    agilePopper.document.close();
    }else{
    agilePopper=window.open(theURL,"popAgile","scrollbars=no,"+s);
    agilePopper.blur();
    window.focus();
    agilePopper.resizeTo(windowWidth,windowHeight);
    agilePopper.moveTo(windowX,windowY);
    agilePopper.blur();
    if (autoclose){
    window.onunload = function(){agilePopper.close();}
    done="okay";
    </script>
    </head>
    <BODY onLoad="doAgilePopup(),top.window.close()">
    </body>
    </html>

    missing semicolon in end of the variable frameString ,
    better write the string in single line thats easy to find the bugs like this.
    var frameString=""+
    "<html>"+
    "<head>"+
    "<title>"+title+"</title>"+
    "</head>"+
    "<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
    "<frame name='top' src='"+theURL+"' scrolling=no>"+
    "<frame name='bottom' src='about:blank' scrolling='no'>"+
    "</frameset>"+
    "</html>"

  • Can't FLIP a quick RENDER! Works fine in SHAKE but not to flip or Disk!

    Learning with Lynda.com!
    Part 1 has you rendering two files, one is a still image, the other a quicktime movie, I don't have the money for premium so I got my own clouds movie (.mov) and added a still plane.
    I key framed 1 - 100 and playing it back its fine in shake, but not on FLIP or DISK, its nothing but a still image. Have done it 5 times making sure that all the right buttons are on, or not, and as I said, it works INSIDE of shake but won't RENDER to FLIPBOOK!
    I don't suppose anyone wants to send me the exercise files? (on knees begging LOL) I am a member, just can't afford $300 for one pop and this is really the only program I need to learn.
    Thanks!

    Sorry if I'm pointing out something obvious that you already know. Have you checked the time range in the render dialog? Shake does not fill in the values for you automatically, and defaults to "1" so only renders the 1st frame. It needs to be set to eg "1-100".

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • After stopping FF when I restart it , I get a pop up displaying Firefox already running but not responding. Please Help?

    After stopping FF when I restart it , I get a pop up displaying Firefox already running but not responding. Please Help?

    There are several possible causes, see [[Firefox is already running but is not responding]].

  • PDF Report with Korean font work fine in 9iDS but not in 9iAS

    Hi,
    I am using Oracle 9i Application Server 9.0.2.0.0, When i try to run the report using Korean font The pdf report not showing the korean font correctly.
    I tried the same in 9ids , which is working properly. I have done exactly the same setting in 9ias, but it is not working.
    The Oracle ias report service dialog shows version 9.0.2.0.3
    My 9ias settings
    NLS_LANG = AMERICAN_AMERICA.KO16KSC5601
    In uifont.ali the settings are
    [ PDF ]
    .....ZHT16BIG5 = "MSungStd-Light-Acro"
    .....ZHS16CGB231280 = "STSongStd-Light-Acro"
    .....KO16KSC5601 ="HYSMyeongJoStd-Medium-Acro"
    Installed the Korean font(HYSMyeongJoStd-Medium-Acro) from Adobe site
    the font file HYSMyeongJoStd-Medium-Acro exist in C:\Program Files\Adobe\Acrobat 5.0\Resource\CIDFont
    also installed the asian Suit 2000(Union Way) on the ias server.
    I have checked the Smoothing display option also in Acrobat 5. The Document font is showing
    Origial font = HYSMyeongJoStd-Medium-Acro type=type1 (CID) Encoding=KSC-EUC-H
    Actual font = HYSMyeongJoStd-Medium-Acro type=type1 (CID)
    Anyone please let me know do i need to do any other changes or i need to apply any patch . Please reply, Thanks in advance
    with Regards
    Rohit.

    Hi Navneet,
    Thanks for the immediate reply.
    As such there is no change in both the report servers , same output in win2000 and win2003. I am generating the rep from 9ids for both 9ids and 9ias, and i am using font UWKMJF which is korean charecter support, but 9ias is generating some junk charecters with spacing , 9ids is working fine.
    The PDf Document font is showing
    Origial font = HYSMyeongJoStd-Medium-Acro type=type1 (CID) Encoding=KSC-EUC-H
    Actual font = HYSMyeongJoStd-Medium-Acro type=type1 (CID)
    which is same as 9ids, but the data displaying in the pdf are not proper.
    As you mentioned about the patch, which patch i have to apply. can you please also mention the patch numbers.
    Please help me.
    Thanks and Regards
    Rohit.

  • Page displays perfect in Safari, but not Internet Explorer...please help!

    Please help, this page looks fine in Safari, but in IE, the 2nd and 3rd column are spread out. I want everything to stay to the top;
    http://www.fuels4less.com/WORKING_INDEX_HELP3.htm
    Thank you in advance!

    HTML errors can cause all kinds of problems between browsers/versions/platforms.
    Visit http://validator.w3.org to get a listing of your errors (54 errors 3 warnings)
    If it's still not displaying correctly once your errors are cleaned out, post back and we can take a closer look.

  • Custom Dashcode widget works fine on mac, but not in iBooks

    I wrote a dashcode widget that works fine on my mac but not in iBooks, what am I doing wrong?
    I am trying to create a widget that performs a specific calculation when the user inputs the 2 variables. However when I go to preview it on my iPad, the button that performs the calculation disapears. It is visible in the thumbnail, but once you launch to full size... bye bye...
    Help is appreciated. Are buttons not allowed?

    tk0us wrote:
    it sets the size of the widget when displayed as a widget full screen or whatever size the png is
    That is not correct. What sets the size of the widget when it runs is the canvas size of the widget, not Default.png.
    At the link below, you can find a widget with a Default.png of 140x200 pixels. When you run the widget, it displays at 900x607 pixels.
    http://www.triodia.com/staff/michi/drumming/RopeCalc.zip
    This demonstrates that Default.png has nothing to do with the size of the widget when it runs. Default.png need not even have the same aspect ratio as the widget canvas.
    Michi.

  • EBS Forms functional script runs fine in OpenScript but not from OTM

    Hi,
    I have an EBS forms functional test script which runs fine in OpenScript, but when scheduled from OTM, the web part runs fine but when it comes to forms, the script fails with the following error:
    Forms Object Not Found! XPath: //forms:window[(@name='NAVIGATOR')], Type: oracle.oats.scripting.modules.formsFT.helper.test.FormWindow, Cause: No Matches <Less>
    I have performed all the steps below already:
    1) Stopping the OATS Agent service and changing it to manual.
    2) Starting the command prompt and running the AgentManagerService command as mentioned in your forum.
    3) The console displays
    C:\>C:\OracleATS\agentmanager\bin\AgentManagerService.exe -c AgentManagerService
    .conf
    wrapper  | --> Wrapper Started as Console
    wrapper  | Launching a JVM...
    jvm 1    | Wrapper (Version 3.0.3)
    jvm 1    |
    4) I have added the test in the OTM with the following command line settings:
    -browser.type InternetExplorer -formsft.startup_timeout 30 -formsft.action_timeout 20 -formsft.response_timeout 10 -delayPercentage -1 -delayMin 0 -delayMax 5 -FormsAutomationEnabler.bat -enableForms true
    But each time the script fails, please note that my script has assets and they are placed within the script folder.
    Please help me on this at earliest.
    Thanks,
    Aarti

    Hello Aarti!
    I had the same problem and this steps help to solve the problem:
    You need to enable Forms Automation under agent. Please follow by below steps.
    1.open command prompt
    2.cd C:\OracleATS\agent
    3.FormsAutomationEnabler.bat -enableForms true
    4. Run script from OTM
    Attila

  • I am having trouble with CSS.  Displays right in DW but not in web browser

    Hello,
    I am having difficultiy getting my webpage to look the way it does in Dreamweaver in a browers (All 5 of them).  My problems are with:
    - Title Heading Content
    - Sidebar
    I have two lines in my heading with the name of the organization.  I made two rules.  Header H1 and a sub header.  For some reason while previewing them in a browser there is a gap between the two words.  But in DW there is not.  I do not want the gaps.  How can I fix it?
    In a browser the side bar does not come all the way down.  There is a small gap between it and the footer.  Like the other problem this does not appear in DW only in the browers.
    Any help would be appreciated!  I am still learning CSS.
    I believe these are the only two files you need to look at.
    Thanks for the help!

    Also how can you see if your ISP offers the free web server space?
    Contact your internet service provider (ISP).  Often this is your telephone or cable broadband provider too.  If not, there are many free or very low cost remote server hosts around.   Do a Google search.
    I did do the validator and it told me I was fine.  I did not do a CSS one though.
    Good. So we know it's not an HTML error.  Get the FF Web Developer Toolbar.  It permits you to edit CSS in your browser to see how changes effect the layout plus a lot of other cool stuff.
    Sorry I'm still new to all of this.
    Don't fret, Tim. We all started in the same place.  You'll catch on soon enough. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • ITunes/Apple Mobile Device works fine w/iPod but not iPad

    Hi. I'm getting stuck on this and would like some help to solving this problem. Basically I'm trying to sync my iPad; however, whenever I connect it, this meesage pops up: "this iPad cannot be used because the Apple Mobile Device is not started." The problem is that when I try to plug in an iPod using the same wire, it works fine, no problem, but the iPad just won't connect. I have since uninstall and reinstall all Apple components (iTunes, AMD, QuickTime, etc) and it's still the same thing...iTunes connects fine w/ the iPod, but not the iPad. What to do? Thnx in advance.
    EDIT:
    Btw, I've tried to connect the iPad while the iPod is connected, and the "Apple Mobile Device is not started" error message pops up too, which is weird, because the iPod is connected and syncing at that time...which means the Apple Mobile Device thing IS started. >.>

    The iOS devices use Apple Mobile Device Service, while older iPods use the iPod Service.
    Checkout this Apple document -> How to restart the Apple Mobile Device Service (AMDS) on Windows
    Are you able to restart the service after following the steps in that article?

Maybe you are looking for

  • Personal iPads in the enterprise - keeping work/personal apps separate

    Hi All, I work in IT for a school district.  Recently, we got a grant for iPad training.  As part of that training, every teacher that attended the classes was given an iPad.  The problem is, that because of the way the grant was structured, the iPad

  • Faulted while invoking operation "sendEmailNotification"

    Hi! I've got a BPEL process and in the end of the process I send completion message by email. This is working most of the times, but sometimes I've got a fault like this: InvokeNotificationService (faulted) [2010/10/07 13:38:02] Faulted while invokin

  • Using Time Capsule to backup external hard drives

    Has anyone tried backing up external hard drive to TC? I've only been able to tell TC to NOT backup my drives, not TO back them up. Any help? Thanks

  • Mac will not start up! Help!!?

    Hi guys and gals - Before I reinstall my system software and lose my itunes and iphoto files I was wondering if anybody can help or has experienced the same problem as me. Here is what happened; I was about to import some pics from my camera when it

  • Possible Bug in ID5.5 When Exporting Images to ePub

    Just wanted to relate my experience with exporting images to ePub in InDesign CS5.5. I've already spent the better part of two weeks trying to find a resolution for the problem with Adobe's customer service techs in India. Nice guys, but so far not o