Picture moves down in IE7

Hello
I am new to this forum and to Dreamweaver CS4. My website displays properly in Safari, Firefox and Chrome but with Internet Explorer 7 the images all move down past all text and leaves a huge whitespace area above each picture. Any suggestions to fix this would be appreciated.
My site is
www.audiophilesound.com
Thanks
[Moved to Dreamweaver General Discussion forum by moderator]

.thrColFixHdr #mainContent {
border:1px solid red;
margin:0 260px;
padding:0 10px;
width:500px;
On that rule you have appled margin in such a way that you are asking for zero top and bottom and 260px left and right.  I think that you only need that margin on the left to push it out from under your side panel.
Martin

Similar Messages

  • The accursed little dark gray ball with white in the center and white arrows, either two or four, which seize control of the screen and move the text or pictures up, down, left, right and can be stopped only by finding the ball and clicking it. I want to

    The accursed little dark gray ball with white in the center and white arrows, either two or four, which seize control of the screen and move the text or pictures up, down, left, right and can be stopped only by finding the ball and clicking it. I want to stop the thing permanently. Firefox 3.6 and 3.64
    == This happened ==
    Every time Firefox opened
    == with 3.60

    The accursed little dark gray ball with white in the center and white arrows, either two or four, which seize control of the screen and move the text or pictures up, down, left, right and can be stopped only by finding the ball and clicking it. I want to stop the thing permanently. Firefox 3.6 and 3.64
    == This happened ==
    Every time Firefox opened
    == with 3.60

  • How do you prevent the organizer from mixing the order of pictures when down loading off the memory card?

    @How do you prevent the organizer from mixing the order of pictures when down loading off the memory card?

    This sounds like you are using Photoshop Elements, and the Photoshop Elements forum would be best at answering that.
    Photoshop Elements
    Gene

  • Weird message below status bar - icons move down and almost touch dock

    Ever since installing 3.0 on my 3g iphone I've had a weird problem. Roughly around an hour or so after the phone is on, the icons on the page move down (about an 1/8 of an inch) and the words "Revisar ADN" appear below the status bar. A little bit later the message will go away but the icons will remain shifted down. The only way to fix it is to turn the phone off and back on again, but again, roughly an hour later it happens again.
    I have restored several times but to no avail.
    Some more info about the situation: I purchased and activated the phone in Guatemala (where I live) and my carrier is Claro. The words "revisar ADN" mean "check DNA" in english. The phone is not jailbroken or anything like that. Even though the carrier is Claro, the international settings are in English with the exception of the spanish language added to the keyboard. I've had the phone for about 6 months and on 2.2.1 never got this message.
    Any help would be appreciated.

    Thanks so much for the information and the investigation on this (I saw you posting in other forums as well). Through some trial and error I think things are working finally. Here is the story for anyone else that might suffer from the same problem.
    I originally tried the SIM trick and took the SIM out, put it into another phone, added a contact, and then put the SIM back in. This unfortunately did not work. A few hours later the icons had moved again. I then noticed that the contact that I had added to the SIM was not in my iphone address book, so I imported the contacts from the SIM (Settings>Mail, Contact, Calendars>Import Sim Contact), hoping that this would fix the problem. That didn't work either. I turned the phone off and on again, and that didn't work either.
    Then I began to look into the "Claro Contactos" issue, and went looking for the SIM Applications (Settings>Phone). Now, I am almost positive that when I looked here earlier that day the SIM Applications button was not there. Maybe it was, but I'm thinking that by putting the chip into another phone and then putting it back into the iphone, this "unlocked" this feature. Or maybe it was the simple act of taking it out and putting it back in. Either way it was there now. I had never heard (or turned on) Claro Contactos so I went hunting for where to turn it off. After finding it "Utilidades Claro" it popped up a message asking if I wanted to turn it on. Obviously I had not used the feature before so I couldn't turn it off like the previous post had suggested. So I did the opposite and turned it on. I then touched the button "Respaldo Contactos" to back up that one contact to this service and then touched the button "Respaldo Automatico" and told it NOT to back up automatically. After doing all of this, I turned the phone off and on again, and now everything has been fine. It's been a full day and my icons are right where they should be.
    I mention the process because I'm not totally convinced that just by turning the Claro Contactos on was the issue. I think the whole process is the solution. Maybe someone else that has the same issue can try the process, but backwards and see if just switching the Claro Contactos on (or off) solves the problem.
    Thanks for the help and I hope this helps whoever else might have the same problem.

  • Help needed to rewrite code so main menus move down to make way for subs

    Can anybody please help me (slightly) alter some code.
    I am working on a vertical menu with sub's and need to alter the AS so that when a sub menu is selected, the main menus below it move down to accommodate the new sub menu.
    This is the code I am currently using is
    GenerateMenu = function(container, name, x, y, depth, node_xml) {
        // variable declarations
        var curr_node;
        var curr_item;
        var curr_menu = container.createEmptyMovieClip(name, depth);
        // for all items or XML nodes (items and menus)
        // within this node_xml passed for this menu
        for (var i=0; i<node_xml.childNodes.length; i++) {
            // movieclip for each menu item
            curr_item = curr_menu.attachMovie("menuitem","item"+i+"_mc", i);
            curr_item._x = x;
            curr_item._y = y + i*curr_item._height;
            curr_item.trackAsMenu = true;
            // item properties assigned from XML
            curr_node = node_xml.childNodes[i];
            curr_item.action = curr_node.attributes.action;
            curr_item.variables = curr_node.attributes.variables;
            curr_item.name.text = curr_node.attributes.name;
            // item submenu behavior for rollover event
            if (node_xml.childNodes[i].nodeName == "menu"){
                // open a submenu
                curr_item.node_xml = curr_node;
                curr_item.onRollOver = curr_item.onDragOver = function(){
                    var x = this._x + this._width -76;
                    var y = this._y + 55;
                    GenerateMenu(curr_menu, "submenu_mc", x, y, 10, this.node_xml);
                    // show a hover color
                    var col = new Color(this.background);
                    col.setRGB(0xf4faff);
            }else{ // nodeName == "item"
                curr_item.arrow._visible = false;
                // close existing submenu
            curr_item.onRollOut = curr_item.onDragOut = function(){
                // restore color
                var col = new Color(this.background);
                col.setTransform({ra:100,rb:0,ga:100,gb:0,ba:100,bb:0});
            // any item, menu opening or not can have actions
            curr_item.onRelease = function(){
                Actions[this.action](this.variables);
                CloseSubmenus();
        } // end for loop
    // create the main menu, this will be constantly visible
    CreateMainMenu = function(x, y, depth, menu_xml){
        // generate a menu list
        GenerateMenu(this, "mainmenu_mc", x, y, depth, menu_xml.firstChild);
        // close only submenus if visible durring a mouseup
        // this main menu (mainmenu_mc) will remain
        mainmenu_mc.onMouseUp = function(){
            if (mainmenu_mc.submenu_mc && !mainmenu_mc.hitTest(_root._xmouse, _root._ymouse, true)){
                CloseSubmenus();
    // closes all submenus by removing the submenu_mc
    // in the main menu (if it exists)
    CloseSubmenus = function(){
        mainmenu_mc.submenu_mc.removeMovieClip();
    // This actions object handles methods for actions
    // defined by the XML called when a menu item is pressed
    Actions = Object();
    Actions.gotoURL = function(urlVar){
        getURL(urlVar, "_blank");
    Actions.message = function(msg){
        message_txt.text = msg;
    Actions.newMenu = function(menuxml){
        menu_xml.load(menuxml);
    // load XML, when done, run CreateMainMenu to interpret it
    menu_xml = new XML();
    menu_xml.ignoreWhite = true;
    menu_xml.onLoad = function(ok){
        // create main menu after successful loading of XML
        if (ok){
            CreateMainMenu(10, 10, 0, this);
            message_txt.text = "message area";
        }else{
            message_txt.text = "error:  XML not successfully loaded";
    // load first XML menu
    menu_xml.load("menu1.xml");
    Any help/feed back - even if its just to tell me Im asking for too much, would be incredibly appriciated.

    onclipevent(load)                                           
    total=_root.getbytestotal();                             
    onclipevent(enterframe)
    loaded=_root.getbytesloaded();
    current=int(loaded/total*100);
    p=""+current+"%";
    if(loaded==total)
    gotoandplay("Scene 2",1);
    sorry for getting the code and coment mixed up.

  • New W530 Owner - Can I move down to W7 for a while and then come back?

    I have a full Windows 7 license and think I would prefer to move down to Windows 7 for a while and have the option to come back to 8 later.  My understanding is that 8's key is in the bios.
    If I move down to W7 will it install normally?
    If I later want to move back to W8 can I install that from any Win 8 Pro install media and it will just recognize the key at that time?
    Thanks!

    http://www.howtogeek.com/133168/how-to-downgrade-windows-8-pro-to-windows-7/
    http://www.infoworld.com/t/microsoft-windows/how-downgrade-windows-7-210685
    W520 4270CTO i7-2820QM Quadro2000M 1920x1080 Display 16GB RAM 2x240GB Intel 510 SSDs (RAID 0) - BIOS 1.42 - PCMark7:4,568
    Samsung Series 9 15-inch NP900X4C-A03US - PCMark7: 4674

  • Is there a way to Quickly organize, consolidate & save the Original (Pictures, Movies, etc.) yet delete all duplicate (Pictures, Movies, etc.)?

    Is there a way to Quickly organize, consolidate & save the Original (Pictures, Movies, etc.) yet delete all duplicate (Pictures, Movies, etc.)?

    I wanted to first thank you for this, as this is the only workaround literature that seems to be floating around out there.  With that said, I know it is a big ask, but is there any way that you could create a video showing step by step how to do what you do?  I have several tracks that are stuck in waiting mode, and if left in itunes, will never upload or match...they only cause the upload process to hang up and restart.  I've tried leaving it for days...I've tried converting the files, signing in and out of itunes (and itunes match), updating itunes match, and I tried your technique...unfortunately to no avail.  Perhaps I didn't do your technique correctly.  I used audacity to reverse the audio.
    ANY help would be GREATLY APPRECIATED!!!
    Thanks

  • CS4: Video moves down after rendering work area

    My video is fine before rendering work area, but as soon as it's rendered, it moves down. Anyone know how to fix this?

    Here are some screeenshots.
    Before:
    After:

  • Xy graph automatically moves down

    Hi,,,, I've got a problem. I have the XY graph and I would like the graph automatically moves down while running program. If u guys have ever seen the monitor of a roller testbench, Im working with a guidance system for a driver, using LabVIEW to create speed profile graph. I've manually done the examples by panning and PrtSc them as attached files.
     Any idea?
    Thanks
    Mannie
    Attachments:
    speed_profile.jpg ‏778 KB

    If I understand what you want to do, all you need to do really is switch the X and Y axes. Here's a quick example.
    Try to take over the world!
    Attachments:
    Vertical Chart.llb ‏47 KB

  • Should the admin/user folder and all of its sub folders be moved to the hdd or just parts of it? (eg. picture, movies, documents)  What is the best way to go about doing this.  Also should a 2t hdd be partitioned.

    iMac with 256ssd and 2t hdd. Should the admin/user folder and all of its sub folders be moved to the hdd or just parts of it? (eg. picture, movies, documents)  What is the best way to go about doing this.  Also should a 2t hdd be partitioned.

    Yes, you can move your user directories to the HD and keep your OSX and Applications on the SSD drive.
    Whether you partition your HD or not depends on how much data you have and how you propose to use your HD.
    Are you planning to use your iMac as a Time Machine backup volume? If so, partition it off.
    Do you have huge data files, eg video, music, photos?
    How much of your 2tb drive will be "free" once it is loaded with all your data?
    A little more information is required before the optimal configuration can be recommended for your use.

  • How do i have subsequent fields label and values move down the page dynamic

    how do i have subsequent fields label and values move down the page dynamicly...
    the field in question "can grow" and can become quite big...overlaping the content of the fileds below...how can i make the fields below this large field move dyanmically so there is no overlap?

    if it is the same field and it is set to can grow you just need to make sure you put space between by inserting a section below

  • Address Book's window moves down 3 pixels every time you start the app.

    I want to confirm that this is not an isolated issue and to make a bit more noise because Apple didn't fix this in the 10.5.3 update. The problem is that the Address Book's window moves down 3 pixels from it's previous position every time you start the app. This only happens if the Address Book window is sized vertically larger than minimum. Now, each time you quit and start Address book it will reposition it's window 3 pixels down. After some time and many Quit/Starts your window will end up at the bottom of your screen and even size itself down to vertical minimum. If you have it positioned so that the bottom of the window protrudes off the screen then it will continue until it reaches the top bar of the window. It's not a serious bug I know. But, for the way I use Address Book it's annoying to have to reposition it's window to align with my other apps which I have open aligned/arranged at startup. It's just that all the other Leopard apps don't do this. Maybe it's a feature added to avoid patent infringement. Who knows! Apple I know you have bigger fish to fry but would you please clean this up.
    To test first start Address Book and size your Address Book window vertically larger than its smallest size. Now repeatedly quit and start the Address Book application. Watch your Address Book window migrate down 3 pixels from it's previous position every time you start. Have fun, watching Address Book falls from grace. Good thing it doesn't migrate off screen completely!

    Hey! It works! Nice catch
    Gee, now if the rest of Leopard would work properly they would even have the time to fix this

  • Scale Flash Movie Down in IFRAME?

    Hello! Is there a way to scale a flash movie down in size (I don't have the flash assets) when accessing the movie via an iframe?
    NOTE: The flash movie must be displayed in an iframe. Is there any way to scale it to a specific size? I am using the following code (with generic URL posted here).
    <div align="center">
      <div id="contentbanner" style="height:90px; padding-top:0px;">
                <IFRAME style="margin-bottom:6px;" SRC="http://ad.domainname.com/adi/N582/B3910244;sz=728x90;ord=[timestamp]?" WIDTH=728 HEIGHT=90 MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=no BORDERCOLOR='#000000'>
                <SCRIPT language='JavaScript1.1' SRC="http://ad.domainname.com/adj/N582/B3910244;abr=!ie;sz=728x90;ord=[timestamp]?">
                </SCRIPT>
                <NOSCRIPT>
                <A HREF="http://ad.domainname.net/jump/N582/B3910244;abr=!ie4;abr=!ie5;sz=728x90;ord=[timestamp]?">
                <IMG SRC="http://ad.domainname.com/ad/N582/B3910244;abr=!ie4;abr=!ie5;sz=728x90;ord=[timestamp]?" BORDER=0 WIDTH=728 HEIGHT=90 ALT="Click Here"></A>
                </NOSCRIPT>
                </IFRAME>
      </div>
    </div>
    Thanks for your help.

    You might try changing the size of ad  (728x90)  to whatever is required.
    SRC="http://ad.domainname.com/adi/N582/B3910244;sz=728x90;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • The trackball ne move down

    HI every body ...
    please help me . i have a big problem with my trackball of curve 8900.  i can't move  down but all the others directions work normally . my phone is new .  in some time it work normally but it take some minutes than stop of get down . i tried to change my trackball and to get a new software but stet the same problem .pleas help me what i can do ?????  thanxx

    If the device is new, then my recommendation is to return it as this sounds like a hardware issue (especially if you also try replacing the trackball with no positive effect).  It may go for repair, or your carrier may simply decide to replace it with a new one.
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • HT1766 want to access pictures/movies on my computer.

    i backed up my iphone, but want to access pictures/movies on my computer. i do not need to "restore" my phone, just access files. where do files go on your computer when you back up?

    depend on which os
    mac
    https://www.google.dk/search?source=ig&hl=en&rlz=1G1TSEH_ENDK367&q=syncronize+me dia+to+iphone&oq=syncronize+media+to+iphone&gs_l=igoogle.3...752126.757556.0.757 774.26.21.0.5.0.0.128.1424.19j2.21.0...0.0...1ac.JiWj3kAMIow#sclient=psy-ab&hl=e n&rlz=1G1TSEH_ENDK367&q=location+of+iphone+backup+mac&oq=location+of+iphone+back up+mac&gs_l=serp.3..0l3j0i30.2308.2308.4.2699.1.1.0.0.0.0.76.76.1.1.0...0.0...1c .0ygUaICkJVE&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.&fp=910bed264f658f70&biw=1780&bih= 730
    windows
    https://www.google.dk/search?source=ig&hl=en&rlz=1G1TSEH_ENDK367&q=syncronize+me dia+to+iphone&oq=syncronize+media+to+iphone&gs_l=igoogle.3...752126.757556.0.757 774.26.21.0.5.0.0.128.1424.19j2.21.0...0.0...1ac.JiWj3kAMIow#sclient=psy-ab&hl=e n&rlz=1G1TSEH_ENDK367&q=location+of+iphone+backup+windows&oq=location+of+iphone+ backup+windows&gs_l=serp.3..0l3j0i5.14327.15231.5.15644.7.5.0.2.2.0.107.380.4j1. 5.0...0.0...1c.7HMxkO3bLK4&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.&fp=910bed264f658f70 &biw=1780&bih=730

Maybe you are looking for

  • Different Year Ends For Each Venture in JVA

    Hi Guys, Can we define different year ends for each venture we create in Joint Venture Accounting Module of SAP IS Oil and Gas Solution. If yes how can we ? transaction code or path needed.

  • Data synchronisation in offline devices

    I work as a technical architect for a company building a web based application. There will be a need to provide an iDevice application for clients. The devices will have their local data store. Question is how should offline (out of mobile coverage)

  • VS2008 - Could not load file or assembly 'Oracle.DataAccess...

    Hi all, After installing the ODAC 11g I am getting the following error when I try to run in debug mode a VS 2008 Win Form app that uses DataAccess.dll. The app is the HR_Connect. Here is the error - System.IO.FileNotFoundException was unhandled Messa

  • Recordings not playing correctly when watching online

    It stops the playback at 45 minutes. I am still having the issue. 3 recordings tonight all at the same time and all 3 started 5-6 minutes in when watching online. All 3 play fine in my house. Kenal0

  • Contacts crash when clicking search result

    I'm a new XPeria user, and new to Android at large. Being a previous iOS user, I'm largely pleased with Android so far – not that I was displeased with iOS, I was just curious about Android. Anyways, on my XPeria, I find a peculiar thing. I have two