TOC able to recognize a chart or table or images (jpeg format)?

Hi, I've added a couple of charts to my Pages 09 document, and was hoping the table of contents would show the chart as something like "Chart 1" or even use the title of the chart. Is there anyway to make this happen? I have, of course, gone back and updated the TOC, but it still does not see the chart.
And, eventually I will add some jpg images as well.....same question. Is there a way to make the TOC recognize images?
Thanks!

Create a paragraph style called Captions and use that to label under the charts.
Make sure they are in the main text body however. The T.O.C. does not index anything else.
Then include Captions in your T.O.C.
Peter

Similar Messages

  • Split a TOC over pages: page break in a table of contents

    I'd like to be able to put a page break in a TOC. I have a TOC spans a couple of pages. The second page only has a couple of lines in it, so I want to be able to split the TOC on TOC heading 1 with a page break.
    I know that I could adjust the styles for the TOC, but this is not a general enough solution for me - it would probably not last long (add new pages, the arbitrary page break is going to move).

    This answer assumes that your document uses the Default page style for physical pages 1-3. You are going to need two different page styles to accomplish what you want. (I'm guessing you have used a page number offset of -2 to get your physical page 3 numbered as 1 and this simply will not work in the TOC.)
    Put your cursor in the Title page (physical page 1) and open the Stylist (F11). Click the Page icon (4th from left) then click the New Style From Selection icon (2nd from right). Give it a name like 'Body'. Before you close the Stylist double click on Default just to make sure you did not change the style of the 1st page.
    While you are still on the 1st page click into the footer and remove the page number field assuming you do not want it.
    Put you cursor in the FIRST (1st) paragraph of the 3rd page and do **Format > Paragraph > Text Flow tab. In the Breaks section, check the Enable box, if not already checked, then check the With Page Style box, select the Body style from the drop down menu and set the page number to 1.
    If the page number field is still in the footer on this page then delete it and insert it again. It should now show 1.
    Click into the TOC, right click and select Update Index/Table.
    Just in case you have trouble translating this to your version of SO I have fixed your document and have attached it.
    * *To change to a new page style while writing your document do Insert > Manual Break > Page Break and select the new style. If you want a new page number you can check that box and set the new number.  

  • Not able to access javaFx charts from a remote system after using ext. jars

    We are facing following issue. Any recommendations to resolve these issues are highly appreciated.
    1. Not able to access javaFx charts from a remote system (More details at the end of mail).This is high priority requirement as we have a web based reporting application and users access it over our static IP address.
    We are using Java Fx charts in our web application where we built jnlp and jar files in a separate fx project and kept jar and jnlp’s inside our web project.
    It is working fine when we did not used any external jar files and remotely it is accessible. But when we used external jars our project is running on local
    system but remotely it is not working due to some path settings. We modified jnlp files where entry of jar files exists and modified the jar path as per our
    project. But still it did not work.
    Before using external jars inside our java fx project my jnlp looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    After modifying my jnlp as per my project as
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    After adding external jars my jnlp looks like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    <jar href="lib/jdom.jar"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    I have modified the jnlp as per my project :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    <jar href="/PiFx/FxFiles/lib/jdom.jar"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    where PiFx is our project Name

    We have tried few things given in thread : http://forums.sun.com/thread.jspa?threadID=5401999
    Now it is not able to get the external jar file only
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    JavaFXApplication3.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
            <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true" />
        </resources>
        <application-desc main-class="com.sun.javafx.runtime.main.Main">
            <argument>MainJavaFXScript=misc.MyChart</argument>
        </application-desc>
        <update check="background">
    </jnlp>JavaFXApplication3_browser.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
           <jar href="/PiFx/FxFiles/JavaFXApplication3.jar"  main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true"/>
        </resources>
        <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
            <param name="MainJavaFXScript" value="misc.MyChart">
        </applet-desc>
        <update check="background">
    </jnlp>Applet Code
    javafx({
    archive: "../FxFiles/JavaFXApplication3.jar",
    draggable: true,
    height:hgt,
    width:wdt,
    code: "misc.MyChart",
    name: appletName,
    id: appletName
    });

  • Not able to assign the chart of depreciation

    Hi i am not able to assign the chart of depreciation, can any one provide me the detail path for the below issue.
    Inconsistency between FI company code BHEL and chart of deprec. BHEL
    Message no. AC481
    Diagnosis
    You tried to assign chart of depreciation BHEL to company code BHEL. According to its Customizing definition, this company code manages parallel currencies.
    The chart of depreciation does not contain a corresponding depreciation area for each of the currency types that are defined in the company code.
    System Response
    This assignment is not possible.
    Procedure
    1. Check the currency types of the company code.
    2. Specify a corresponding depreciation area for each currency type.

    Dear,
    Rajesh.
    Good Morning !
    If your company code is having more than one currency than you will have to maintain that many depreciation areas.
    OR
    Before assigning COD to Company Code, delete the parallel currency maintained in multiple currencies in global settings.
    below is the path:-
    SPRO>Financial Accounting>Financial Accounting Global Settings>Company Code>Multiple Currencies-->Define Additional Local Currencies
    After deleting you can assign the COD to Company Code.
    After assigning you have go back again in define additional local currencies screen (mentioned above) and maintain the parallel currency which you have deleted.
    You have first to Assign Input Tax Indicator for Non-Taxable Acquisitions in transaction code OBCL.
    Check your parallel currencies in T.code OABT.
    I hope this will help you to solve your issue. If you have any doubts feel free to share.
    Regards,
    Pankaj A Bhalerao.

  • Not able to recognize any video/audio devices using jmf and java soun

    Hi ,
    I need one help from your side.
    Here I am expecting some clarifications from you. Before that let you my environement.
    My working environment :
    Eclipse tool and added jmf jar to my project I did not do any thing more.
    If any thing I need to do just let me know. My target platform is MAC & UBUNTU.
    Please bare with my questions.
    1) I am not able to recognize any video/audio devices using jmf and java sound APIs on My system.
    ( I checked with the app mentioned in the http://www.java-forums.org/new-java/11201-jmf-cannot-connect-device.html )
    Do we need any administrives rights for our working PC.
    What is the procedure/ setup I need to follow from a java application to enable particular audio/video device since I dont about end-user system setup right.
    If possible send some sample code to recognize /r detect audio device ( voice input ). It should run on both MAC and UBUNTU.
    2) I run the one sample audio recording application of this link (http://www.jsresources.org/examples/SimpleAudioRecorder.java.html) which is provided by YOU.
    I got output audio file and able to hear voice on UBUNTU system but not able to hear voice on MAC system.
    I heared that default line in ( audio setup of the sys) is wont take any voice data on MAC.Why I made this stmt means we are getting false when using isSupported methods of JAVA SOUND API.
    ( like for TragetdataLine ...i,e, all ports are getting false)
    I have one sample audio recording app implemented by QUICKTIME API. In this case also he taking audio ftom device only using quicetime API.
    With that we are able to record and hear audio ( voice input --> not line in , external device we added some thing like SSB...)
    3) In case of Video capturing DataSource, Streams are implemented by PullBufferDataSource , PullBufferStream intefaces used.
    In case of Audio capturing DataSource, Streams are implemented by PushBufferDataSource, PushBufferStream intefaces used.
    Can you explain the reasons ? I gone through API but i am not clear.
    HOPE I WILL BE CLARIFIED EVERY THING FROM YOU.
    Thanks
    RamaRao.G

    Hi ,
    I need one help from your side.
    Here I am expecting some clarifications from you. Before that let you my environement.
    My working environment :
    Eclipse tool and added jmf jar to my project I did not do any thing more.
    If any thing I need to do just let me know. My target platform is MAC & UBUNTU.
    Please bare with my questions.
    1) I am not able to recognize any video/audio devices using jmf and java sound APIs on My system.
    ( I checked with the app mentioned in the http://www.java-forums.org/new-java/11201-jmf-cannot-connect-device.html )
    Do we need any administrives rights for our working PC.
    What is the procedure/ setup I need to follow from a java application to enable particular audio/video device since I dont about end-user system setup right.
    If possible send some sample code to recognize /r detect audio device ( voice input ). It should run on both MAC and UBUNTU.
    2) I run the one sample audio recording application of this link (http://www.jsresources.org/examples/SimpleAudioRecorder.java.html) which is provided by YOU.
    I got output audio file and able to hear voice on UBUNTU system but not able to hear voice on MAC system.
    I heared that default line in ( audio setup of the sys) is wont take any voice data on MAC.Why I made this stmt means we are getting false when using isSupported methods of JAVA SOUND API.
    ( like for TragetdataLine ...i,e, all ports are getting false)
    I have one sample audio recording app implemented by QUICKTIME API. In this case also he taking audio ftom device only using quicetime API.
    With that we are able to record and hear audio ( voice input --> not line in , external device we added some thing like SSB...)
    3) In case of Video capturing DataSource, Streams are implemented by PullBufferDataSource , PullBufferStream intefaces used.
    In case of Audio capturing DataSource, Streams are implemented by PushBufferDataSource, PushBufferStream intefaces used.
    Can you explain the reasons ? I gone through API but i am not clear.
    HOPE I WILL BE CLARIFIED EVERY THING FROM YOU.
    Thanks
    RamaRao.G

  • TS1538 My iTunes, after a short time, decides not to be able to recognize my devices, the only thing that fixes it is a re-install of itunes. it is getting irritating as this will be the 7th time i have had to do it. Any solutions?

    My iTunes, after a short time, decides not to be able to recognize my devices, the only thing that fixes it is a re-install of itunes. it is getting irritating as this will be the 7th time i have had to do it. Any solutions?

    The info that was on the old iPhone can only be retreived either by restoring from iCloud/iTunes back up or syncing from iCloud. You need to chek these places and if nothing is there then I'm sorry that data is gone and you will only have the back ups you see.
    But check iTunes back ups:
    Windows
    Edit>Preferences>devices
    Mac
    iTunes>Preferences>devices

  • Round 3 Digits before decimal in Chart and Table

    Hi Guys,
    Do you know where I can find the option/property in the chart and table to round 3 digits before decimal. Refer snapshot below:
    For example, in below case Y axis original value is 40,000, 80,000 etc. but it should show on the graph and table without '000' 
    Thanks.
    Warm Regards Badal Ratra

    Hi Badal,
    After testing the issue in my local environment, we can refer to the following steps to achieve your requirement:
    Right-click the vertical axis (or textbox in table) to open the Vertical Axis Properties (or Text Box Properties) dialog box.
    Click Number in the left pane, then select Number under Category group.
    Set “0” as Decimal places, select “Use 1000 separator (,)” and select “Show values in” with “Thousands”.
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Chart and table in WAD.

    HI all,
    I want display web items  chart and table one below the other in web templet , but when I try to drop then one below the other in empty web templet , they are palce side by side automatically. how we can display then chat and table blow each other.
    hari

    hi reddy,
    i agree with Vineet.Alternatively u can also place your Chart and then next to chart press "Enter".
    The cursor moves down, then you can place your table.
    Either ways its possible.
    hope it helps,
    regards,
    Parth.

  • Solaris8 Intel able to recognize 7GB out of 40GB

    Installed Solaris 8 (Intel) on HP Pavilion 9600 system with 384 MB RAM
    and 40GB IDE Hard disk drive. Install program was able to recognize only
    6.5GB. My BIOS configuration shows LBA Mode(I tried CHS also).
    I installed Solaris 8 and it is working fine with 6.5GB.
    LINUX 6.1 was able to recognize all 40GB. Am I doing anything wrong?
    I would like to use atleast 20GB for Solaris8 and remaining 20GB for FAT32.
    Any suggestions? Thank You in advance.
    Mohan Anney

    Ok, I got it to work I think, with help from the workaround for
    solaris 7 at http://sun.drydog.com/faq/ (question 5.8)
    I looked at the western digital web site and found the drive has
    87,930,864 sectors. You have to define the geometry as if it
    had 16383 cylinders. 87,930,864 / 16383 = 5367 sectors/cylinder.
    <pre>
    I made a geometry file called 'geometry':
    * Label geometry for device /dev/rdsk/c0d0p0
    * PCYL NCYL ACYL BCYL NHEAD NSECT SECSIZ
    16383 16383 2 0 1 5367 512
    # fdisk -S geometry -I /dev/rdsk/c0d0p0
    # format
    (choose drive, set up partitions, etc)
    # newfs /dev/rdsk/c0d0s7
    </pre>
    etc...
    it seemed to work. Note I'm not using this as a boot drive,
    just as a secondary drive so booting off the disk wasn't tested.
    I also updated the bios on my abit BP6 motherboard because they
    had changes for disks > 32gb, but maybe that doesn't matter if
    you're not booting off the drive.
    hope this helps. Maybe you can post here if it does or doesn't.

  • HT204368 I accidentally clicked Forget Device in bluetooth on my iPad and I cannot figure how to undo that.  Is there any way to be able to recognize the device again?

    I accidentally clicked Forget Device in bluetooth on my iPad and I cannot figure how to undo that.  Is there any way to be able to recognize the device again?

    Put the device back into discovery mode and the iPad will see it again. Make sure the Bluetooth is ON in Settings and look at the devices seen.

  • The online conversion of my pdf file to word did not correctly convert the tables and certain other formatting.  I wish to obtain a refund.

    The online conversion of my pdf file to word did not correctly convert the tables and certain other formatting.  I wish to obtain a refund.

    Hi yammyamm,
    I'm sorry that your conversion didn't work out for you. Please contact Adobe Customer Support via phone or chat, and an agent will be able to process that cancellation/refund for you. Here is the contact information: Contact Customer Care
    Best,
    Sara

  • Charts and/or illustrations ruin the formatting on my ereader

    I've been downloading library books using the Adobe digital editions software for a few weeks now.  This is the first book I downloaded that had charts embedded in the manuscript.  Every time I come to one of the charts, the chart is reduced to a column of numbers, and the printing is scattered over several pages, and the font is limited to the smallest (extremely small) size.  It is extremely difficult to read - moving forward one page for a few lines, then back for a few more lines, trying to figure out where this section ends and what page to continue on. I am SHOCKED!!   After all these years, I thought Adobe was perfect!    Do you know if this is a regular problem with this software?  Or is it possibly my ereader causing this problem?  Is there anything I can do to correct it?

    It's most likely something in the HTML coding which is embedded in the epub file. From what I've seen ADE handles charts and tables as well as any ereader  (which is not saying much really).

  • Tables and images imported to another domain, Missing

    My DBA exported my application as well as images to SQL. I was able to imported to another domain. When I opened the application, I was not able to see graphics and the tables are not there as well. What went wrong?

    Hi,
    In apex , there is a way to export [APPLICATION +DDL+ IMAGE SCRIPTS] using SUPPORTING OBJECTS.
    Please check whether your DBA imported applicaiton in your schema? while importing the screen prompt you to choose which schema to import table
    Let try one more time.
    please give some more details to help you more.
    Thanks
    Mark Wyatt

  • How do I get my table of Images to take the desired layout?

    I am currently creating a web page as part of my learning of html and css, it is a bookmark page with the sites I visit most frequently. The main section of the page is a table of images which are linked to their respective sites, the table is 4 columns by 3 rows. My problem is when in the design window it appears as it should but when I press the live button and when I preview it in a browser all of the images go into one column down the left side of the page. How can I remedy this?
    Any help is greatly appreciated.
    Thanks.

    Thanks for the reply, I will try to copy and paste my code into the space below.
    My HTML:
    <!doctype html>
    <html class="">
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bookmark</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="stylesheet.css" rel="stylesheet" type="text/css">
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
    <header id="top" class="fluid"> <img src="images/logo.png" alt="Bookmark"/>
       <nav id="mainNav" class="fluid">
          <ul id="menuSystem" class="fluid fluidList">
            <li class="fluid menuItem zeroMargin_desktop">Home</li>
            <li class="fluid menuItem">About</li>
            <li class="fluid menuItem">Add</li>
            <li class="fluid menuItem hide_mobile">Contact</li>
          </ul>
    </nav>
    </header>
    <div id="page" class="fluid">
      <table width="100%" height="392" border="0" cellpadding="1" cellspacing="1">
       <tr>
         <td><a href="http://www.google.com"><img src="images/icons/google.png" width="212" height="218"/></a></td>
         <td><a href="http://www.bbc.co.uk"><img src="images/icons/bbc.png"/></a></td>
         <td><a href="http://www.codeacademy.com"><img src="images/icons/codeacademy.jpg"/></a></td>
         <td><a href="http://www.nba.com"><img src="images/icons/nba.jpg"/></a></td>
        </tr>
       <tr>
         <td><a href="http://www.facebook.com"><img src="images/icons/facebook.png"/></a></td>
         <td><a href="http://www.espn.com"><img src="images/icons/espn.png"/></a></td>
         <td><a href="http://www.twitter.com"><img src="images/icons/twitter.png"/></a></td>
         <td><a href="http://www.celticfc.net/mainindex"><img src="images/icons/celtic.png"/></a></td>
        </tr>
       <tr>
         <td><a href="http://www.youtube.com"><img src="images/icons/youtube.png"/></a></td>
         <td><a href="http://www.collegehumour.com"><img src="images/icons/collegehumour.png"/></a></td>
         <td><a href="http://www.skysports.com"><img src="images/icons/skysports.png"/></a></td>
         <td><a href="http://www.nbcnews.com/id/3032619/"><img src="images/icons/nbcnightlynews.png"/></a></td>
        </tr>
      </table>
    </div>
    <footer id="bottom" class="fluid"></footer>
    </div>
    </body>
    </html>
    My CSS (for the larger screens i.e. min-width:769px) is:
    @charset "utf-8";
    img, object, embed, video {
    width: auto;
    height: auto;
    display: block;
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 2px;
    margin-right: 2px;
    margin-bottom: 2px;
    margin-left: 2px;
    .ie6 img {
    width:100%;
    .fluid {
    clear: both;
    margin-left: 0;
    width: 100%;
    float: left;
    display: block;
    .fluidList {
        list-style:none;
        list-style-image:none;
        margin:0;
        padding:0;       
    .gridContainer {
    width: 98.3333%;
    max-width: 1232px;
    padding-left: 0.8333%;
    padding-right: 0.8333%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
    #top {
    #mainNav {
    #menuSystem {
    .menuItem {
    width: 23.7288%;
    margin-left: 1.6949%;
    clear: none;
    background-color: #393737;
    color: #FFFFFF;
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
    font-style: normal;
    font-weight: 700;
    display: block;
    #page {
    margin-left: 0;
    clear: both;
    width: 100%;
    #iconMenu {
    .bookmarkItem {
    list-style-type: none;
    width: 32.2033%;
    margin-left: 0;
    clear: both;
    #div1 {
    margin-left: 0;
    clear: both;
    #bottom {
    background-image: url(images/headerback.png);
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;

  • Table relationship in PDF Format

    hi all
    can anyone send me all SAP Table relationships in PDF Format.
    thanks in Advance.

    Check the below URL:
    http://www.erpgenie.com/sap/abap/tables.htm
    Thanks

Maybe you are looking for

  • Mirrored Raid on Startup Drive?

    Can I set up a Mirrored RAID with my Startup Drive without loosing the data? I have a G5 Dual 1.8 running the latest OSX. I want to add a second internal HD, then setup a Mirrored RAID from my Startup Disk to my newly installed second internal drive.

  • E -reader device not supported

    I have recently purchased an Assus Tablet with an android OS mainly with the object of downloading ebooks. I Ihave downloaded e- books to my computer  which I then moved to the device. The e-reader Adobe app was also in situ. The books would not open

  • Detect IP address changes when using ServerSocket

    We are developing an application which has a ServerSocket, which is started in one machine. That machine is a laptop and it may change the network it is connected to. So the situation is the following: - The laptop connects to network A and has a IP

  • Quickfinder Server public user access

    Hello, I have Quickfinder working and most security is set up and working except, when one loads the search page it defaults to "public access" and a search with public access displays snippets from restricted documents (although authentication is re

  • HT3180 unable to restart in the above way

    I have read several articles but am unable to restart my Apple TV 2. My nephew updated it for me I now have a black TV screen and when I attach it to my computer it is not recognised by ITunes