Table wont snap together.

Hey clever people!
Can anyone help me and tell me why my table wont snap together. I know its probably a really simple answer but im stumped!

Try giving your table a width of 800px.  Change your <table> code to the following:
<table style="width:800px; border-collapse:collapse; margin:0 auto" cellpadding="0" cellspacing="0" border="0">
Having said that, tables are for spreadsheets and tabular data only.  CSS is much better for page layouts.  This 3 part tutorial explains why: http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
(='.'=)
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/

Similar Messages

  • Why don't green screen clips snap together in imovie 11?

    I film hundreds of green screen videos per year. I used to use imovie09, and when dragging one green screen clip next to another they would snap together. Now that I upgraded to imovie 11, it no longer allows you to snap the clips together, you have the cut the background in between them. Is there anyway to get these green screen clips to snap together like they used to in imovie09?

    Well, now I'm even more confused.  I exported my iMovie project from my Mac Book Pro to my iMac and it worked perfectly.   Then I exported the same project to my Mac Book Air and it worked fine.    But when I go back to my Mac Book Pro - green screen effect simply shows as black and non transparent.   So, I have a work around but am puzzled why my Mac Book Pro doesn't work.   All systems on updated version of Lion and all have latest version of iMovie '11.   My Mac Book Pro is a mid 2009 - 2.8 Core 2 Duo and curious if anyone else has experienced this.

  • How to query a table and result together with autonumber

    Hi all
    How to query a table and the result return autonumber for each row together with the table values.
    I have tried rowid but it provide me with characters.
    Tj

    What is your exact requirement?
    If you want the number of rows selected, you can use rownum.
    select rownum, a.* from <table> a;
    Cheers
    Deepak

  • TV episodes wont cluster together

    Just recently some of my TV episodes added to iTunes wont cluster with others from the same show and season.  I've checked and triple checked to be sure I am tagging the show the exact same way.
    For example, check out my Falling Skies, season 2 screen grab below.  Episodes 8 & 9 are sperated from the rest of the season episodes.  This is happening to more then one TV show...not just "Falling Skies".
    2010 MBP, 8gigs, 326 gigs free, OSX 10.8.1, iTunes 10.7
    Thank you.

    Why can't you watch them?  It's likely that the video is not in an iPod friendly/compatible format.  If the video was originally downloaded from the iTunes Store, there is a very good chance that it's in High Definition (HD) format, which is not supported on any model iPod Classic unforunately.
    See this article for more information and assistance.
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    B-rock

  • Data logging in labview table wont proceed to next line

    Hi,
    I have managed to read the data from Visa read and display to a graph. Now, I need to put it into excel file but the problem is that, it is always on the first line in the excel like table i generated in labview. I hope someone can help. Thanks in advance!
    Solved!
    Go to Solution.
    Attachments:
    Dataloggerv2.vi ‏32 KB

    I tried this. But, it's still not working
    Attachments:
    Dataloggerv2.vi ‏32 KB

  • Clips Not Snapping together in Pre 9

    I recently got the program and when I'm editing in timeline and I try to put one shot after another the clip doesn't "snap" on making it much harder to clips after each other and sync them to beats in the music.  Sorry for the poor discription but I really need help.

    The S key toggle has gotten a lot of folk. It's easy to accidentally hit it, and one is not really aware that they have toggled Snap. Maybe Neale can educate me here, but PrPro also has a Snap icon, that shows when Snap is enabled. One can use it, or can use the S key. At least in that program, one can see the Snap icon, and it'll tell them when Snap has been turned ON, or OFF. Does PrE 9 have a Snap icon (along with the S key)? PrE 4 only had the menu Timeline>Snap or the S key.
    Also a caveat. With Snap ON, be a bit gentle, when butting Clips up. If one "slams" the Clips into each other, a Frame, or two, of the preceding Clip can be sheared off, and it goes to the end of the Timeline, where it can very easily become an "Orphan," causing the Timeline's Duration to be longer, than one intends.
    Good luck,
    Hunt

  • Border on Table wont go away

    I have a table with borders set to zero, but it is still
    giving me a hairline border. I am using a jpg bg via css to give a
    rounded corner look to a table. View Page.
    View
    Page Any wisdom on this one? Thanks!

    On Thu, 20 Sep 2007 03:41:55 +0000 (UTC), "surfstoke"
    <[email protected]> wrote:
    >I have a table with borders set to zero, but it is still
    giving me a hairline
    >border. I am using a jpg bg via css to give a rounded
    corner look to a table.
    >View Page.
    http://www.ansano.com/clients/clients/nn/rates.html
    Any wisdom on
    >this one? Thanks!
    Change the cellspacing from 1 to 0. What you're seeing is the
    background
    color.

  • Bb id and password wont work together on device

    when i try to sign into my bbm it says my password is incorrect and have also changed it but still no good  = now it locks me out for 15 mins, so cant download apps etc, when i try to edit id in devices cant save any changes as it wont accept password help please........

    Hello,
    I suppose you have upgraded to BBM7.
    there are problems with a number of users with BBM7 so i recommend downgrading to BBM 6.2 via rroyy.com/ota from your BlackBerry Browser
    If you have an answer to your question then please click “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit.
    BB 8700 -> Bold 9000 -> Curve 8520 -> Bold 9700 -> Curve 9320 -> Bold 9900 -> BlackBerry Z10 + PlayBook 64 GB Wi-Fi

  • External table wont display

    db=xe
    Hello,
    I am attempting to create an external table to reference a csv file that contains exif data from images. The exif data presents the date in the following form 2011:12:03 16:47:27
    I have constructed the external table like this;
    CREATE TABLE metadata_external
    ( sourcefile VARCHAR2 (255 CHAR)
    , createdate VARCHAR2 (255 CHAR)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
      DEFAULT DIRECTORY "UPLOAD_DIR"
      ACCESS PARAMETERS
        ( RECORDS DELIMITED BY NEWLINE
          NOBADFILE
          NOLOGFILE
          FIELDS TERMINATED BY ','
          MISSING FIELD VALUES ARE NULL
          ( sourcefile
          , createdate
      LOCATION
        ( "UPLOAD_DIR":'metadata_external.csv'
    ) REJECT LIMIT UNLIMITED;You will note that I have given the createdate column a datatype of varchar2. This was to avoid any problems with formating so that I could use the to_date function when inserting into other tables.
    But the following code will not display anything but throws the following error;
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "minussign": expecting one of: "binary_double, binary_float, comma, char, date, defaultif, decimal, double, float, integer, (, nullif, oracle_date, oracle_number, position, raw, recnum, ), unsigned, varrawc, varchar, varraw, varcharc, zoned"
    KUP-01007: at line 8 column 1
    ORA-06512: at "SYS.ORACLE_LOADER", line 19I suspect that the : separators in the date are causing the problems.
    Would anyone have some suggestions to fix this problem?
    Thank You
    Ben

    Hello Mahir,
    Here is the csv contents;
    SourceFile,CreateDate,DOF,ShutterSpeed,Aperture,ISO,MeteringMode,ExposureCompensation,FileName,LightValue
    C:/temp/_DSC6473.NEF,2011:12:03 16:47:27,3.38 m (5.04 - 8.42),1/1600,5.0,100,Multi-segment,-1,_DSC6473.NEF,15.3
    C:/temp/_DSC6474.NEF,2011:12:03 16:47:53,3.38 m (5.04 - 8.42),1/2000,5.0,100,Multi-segment,-1,_DSC6474.NEF,15.6
    C:/temp/_DSC6475.NEF,2011:12:03 16:48:22,3.38 m (5.04 - 8.42),1/800,5.0,100,Multi-segment,-1,_DSC6475.NEF,14.3
    C:/temp/_DSC6476.NEF,2011:12:03 16:48:32,3.38 m (5.04 - 8.42),1/1250,5.0,100,Multi-segment,-1,_DSC6476.NEF,14.9
    C:/temp/_DSC6477.NEF,2011:12:03 16:48:57,3.38 m (5.04 - 8.42),1/500,5.0,100,Multi-segment,-1,_DSC6477.NEF,13.6Please note I have only referenced the first two columns in the ddl for the external table because the second column is continueing to return errors.
    Thank You
    Ben
    Edited by: benton on Dec 9, 2011 7:36 AM

  • Table wont stop actualizing

    Hello!
    I work on a table on my iPad every day.
    I copy and continue on the same table next day. Edit it and so on...
    Sometimes the table does not stop actualizing, like shown on the screenshot.
    Any ideas how to fix this?

    Yvan KOENIG (VALLAURIS, France) mardi 28 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    Please, for iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • TWO clips snap together after deleting the one between them without command

    Hi,
    Someone at an Apple store workshop asked today about a gap in a timeline which one usually closes by clicking "close gap", but in this case, the gap is closing immediately after the deletion without a command being entered. Does anyone know if this is a pref or a glitch? We tried (the Apple dudes and I) to find it but couldn't.
    Thanks.
    Mike

    If you use the small Delete key (forward delete above the arrow keys), it will perform a ripple delete, closing the gap as long as no other clips interfere with that operation.
    If you use the large delete key (backspace delete, located above the backslash key)), it will perform a lift delete without closing the gap.
    -DH

  • How do I join 2 clips in the timeline so that they "snap" together?

    This is probably a very, very simple answer, but I cannot get it to work right. Here's my situation.
    I trimmed a clip. So now there is a gaping hole in my timeline. Sure, I could drag the other after it until it matches up and plays continously with the one previous. However, I divided my clip into multiple clips and if that were the only solution I would have to drag the following to the one before it....for each one!
    So I guess my question is 2-fold. How do I select multiple clips (everything after the cut?)...and then make them match up to the clip before the "gaping hole", so that there is not just blank footage for a couple seconds?
    Thanks in advance.

    Thanks Joost!! It was driving me nuts! And it makes me feel a little better that Manuel was stumped also
    You guys hit the nail on the head. With the integration with Premeire now, I have already heard some people switch from Resolve and start using Speedgrade. Now if only the mask issues can be addressed
    For what it's worth I may have beaten you to it (sort of). Look on YouTube for Speedgrade CC quick guide and zombie (don't ask, you'll see)
    That said, I'd love to see what you come out with, and apparently it's time for me to come out with a "part 2". Thanks again!!

  • Pen tool wont snap to existing paths - PLEASE HELP ME OUT!

    Before, I could draw on a new layer with the pen tool and when i hovered over paths on existing other layers, they would appear red, or blue etc. NOW... I hover over those paths with my pen tool and they arent flashing up, meaning I can't use them as a reference! I am so upset, please someone give me a hand, please!

    Larry, I love you. You're a hero, a life saver! I can't thank you enough!

  • JQuery tabs: cookie and "selected" wont work together

    I am using jQuery tabs with six tabs to show a bunch of reports, with a few reports on each tab. I am using the jQuery cookie plugin to remember the tab - this works ok. Page submit is slow because all reports are refreshed unconditionally each time a submit is called. I want to add a condition so that only the report on the currently selected tab is refreshed. Ideally, I want to maintain the tab# in a hidden item and create a condition for each report (or region) to only display when it's tab is selected.
    Jari's blog article shows how to assign the tab number to a page item
    http://dbswh.webhop.net/dbswh/f?p=BLOG:READ:0::::ARTICLE:195800346705831
    But using "selected" seems to break the cookie: after changing the tab (and correctly updating the page item), the next submit changes the tab to the prior one selected. I cannot get both to work at once. I never want to reset the selected tab from the one in the cookie ; I only want to save the selected tab#. Users can only change tabs by clicking on a tab. I am not much of a javascript developer so it is likely to be something trivial.
    This is my page header javascript - you can see where I've added a chunk of Jari's code.
    <script type="text/javascript">
    //<![CDATA[  
       $(function(){ 
       $tabs = $("#PANE_1_T");
       $tabs.tabs({
           selected:'&P17000_SELECTED_TAB.',
           select:function(e,u){
            var a=new htmldb_Get(null,&APP_ID.,"APPLICATION_PROCESS=DUMMY",&APP_PAGE_ID.)
            a.add("P17000_SELECTED_TAB",u.index);
            var r=a.get();
        $tabs.tabs({ cookie: { expires: 1}});     
        $tabs.parents('td').eq(0).removeAttr('width');
        $tabs.show();
    //]]>
    </script>(Apex 3.2.1)
    What am I doing wrong?
    Any help appreciated!
    Mark Teehan, Singapore

    Hi,
    If you submit/reload page you can not set condition that only one report is "refreshed".
    When you submit and page reloads again all regions are loaded what you have on page.
    Of course you can set condition that all regions are not shown, but as I understand you are not looking for that.
    In Apex 3.2, you could call $a_report function to partial page refresh only one report.
    Or use various other JavaScript and Ajax method to refresh only one report.
    And as I understand, you have same info in cookie and item if you could use those in same time. Why not just use that item? Then you do not need load cookie plugin.
    You could change code
       $tabs.tabs({
           selected:"&P17000_SELECTED_TAB.",
           select:function(e,u){
            var a=new htmldb_Get(null, &APP_ID., "APPLICATION_PROCESS=DUMMY", &APP_PAGE_ID.)
            a.add("P17000_SELECTED_TAB", u.index);
            var r=a.get();
           $s("P17000_SELECTED_TAB", u.index);
         });To set item value also in HTML document so you can access it easily using JavaScript.
    Below part is change and set item value in HTML document
    $s("P17000_SELECTED_TAB", u.index);Regards,
    Jari

  • Snap two mc together and they become one...

    So,
    I've been playing around with this idea but I'm stuck, so I hope some of you might have an idea... I browsed the forum and found similar post but none of them addressing my specific case...
    The story goes like this:
    by clicking some buttons on stage I create two different instances of 2 movieClips (from the library) called Event and State..
    I want the instances of Event to snap to the State movieclips when they touch (this part works, see the code below), and if they do snap together I'd like them to move as one... So the Event instance should stick to the State instance and the two become as one....
    The snapping code is
    function snap(e:MouseEvent):void //each Event mc will have an eventlistener for a mouse click
              var len:int = this.numChildren;
              var g:DisplayObject = this.getChildByName("sta"); //each State instance has been renamed "sta"
              for (var k:int = 0; k < len; k++)
                        if (e.target.hitTestObject(g))
                                  e.target.x = g.x - 150;
                                  e.target.y = g.y;

    That's actually what I'm figuring out right now even though it's still not working... I found this nice explanation about target and similar...http://theflashconnection.com/book/export/html/45
    Anyway what I tried to do is creating the Eve and assign them an eventListener for dragging and not.
    var eve:MovieClip = new event_graphic();
    eventArray.push(eve);                             //all new created eve is added to an array and assigned 5                                                                              //listeners
    for (var i:int = 0; i<eventArray.length; i++)
                        eventArray[i].buttonMode = true;
                        eventArray[i].addEventListener(MouseEvent.MOUSE_DOWN, drag);
                        eventArray[i].addEventListener(MouseEvent.MOUSE_UP, noDrag);
                        eventArray[i].addEventListener(MouseEvent.CLICK, snap);
    the same happens for the State... the function snap is like this now (see the comments on the side)
    function snap(e:MouseEvent):void
              var len:int = this.numChildren;                             
    // finds eve and sta in the display list
              var g:DisplayObject = this.getChildByName("sta");
              var h:DisplayObject = this.getChildByName("eve");
              for (var k:int = 0; k < len; k++)       
    //for each obj in the display list check wether eve touches sta
                        if (e.target.hitTestObject(g))
                                  h.x = g.x - 100;
                                  h.y = g.y - 4;
    //eve should snap in position (not working)
              var container:MovieClip = new MovieClip();   
    //if they touch add them to a new MovieClip container
              container.addChild(g);                                            
              container.addChild(h);
              container.addEventListener(MouseEvent.MOUSE_DOWN, drag); 
    //add a listener for it to be draggable
              container.addEventListener(MouseEvent.MOUSE_UP, noDrag);
              container.buttonMode = true;                         
    //this should turn the cursor to a hand but it doesn't... as if container didn't exist
              trace(container.numChildren);           
    //here is what I find most confusing because it returns 2, and that is correct being Eve (h) and Sta (g) its //children, so the MC is there on stage somewhere
    so it seems like it succesfully created an empty MovieCLip, assigns the children H and G but just doesn't make them draggable....
    I also tried to declare the container outside the snap function, same results...
    Here are the drag, noDrag functions
    function drag(e:MouseEvent):void
              e.currentTarget.buttonMode = true;  
              e.currentTarget.startDrag();
    //both e.target and e.currentTarget don't work!!!
    function noDrag(e:MouseEvent):void
              e.currentTarget.buttonMode = false;
              e.currentTarget.stopDrag();

Maybe you are looking for

  • Lost mail. Useless Backup

    Hi everybody. I hope my english is good enough to make my point with this Yesterday I found out that all my mail in the Inbox was gone. I don´t know how. However I had I backup and I use it to restore my lost mail. But when I opened Mail the next tim

  • IBase search result list not showing in Account Identification

    Hi Gurus, I'm new to CRM and we have an upgrade issue. We just migrated to EHP3 for SAP CRM 7.0. After the migration, the installed Base result list is not showing in the Account Identification screen. We have the requirement to show the installed ba

  • Max no.of rows capacity in a cursor ?

    Gurus, Do we have any limitations in cursors to hold max no.of rows returned by a SQL ? My select returning 50 Million rows. Can I hold all of them in a single cursor ? Thnaks. S

  • Upgrading from Broken Powerbook

    Hi, I am in Africa right now serving with the Peace Corps. I had my 17" Powerbook stolen. It was recovered, but it was bent pretty badly. It still beeps, but that is about it. So despite a lack of funds I managed to order a 15" MacBook and some frien

  • Firefox won't allow me to download my files from icloud, but Safari does. Why?

    When I use icloud, I can see my files 'in the cloud', but when I try to download them to my Mac, nothing happens, and I cannot find the files anywhere. If I use Safari however, there is no problem, and the files pop straight into my download folder.