I'm still stuck cannot getthe content into the divs!

OK, I got the third column in place, but still cannot get the content table I need to put in to stay where it belongs or even to show up:
I put one table in going from the code, the other I couls see the insertion point in the correct div, but neither table stays to the width I specify, they expand out to the right beyond the content div and taht put the first table on top of the second!!!
Here's what I have as the HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>bhsg template</title>
<link href="css/bhsg.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
    background-image: url(images/BHSG_3_s1.gif);
    background-repeat: repeat-x;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    position: fixed;
    margin-left: 75px;
body,td,th {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10px;
    color: #000;
    height: auto;
    width: 967px;
h1,h2,h3,h4,h5,h6 {
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
h1 {
    font-size: 18px;
    color: #000;
h2 {
    font-size: 14px;
    color: #000;
-->
</style></head>
<body>
<div id="wrapper">
  <div id="header"><img src="images/BHSG_header.jpg" width="967" height="116" border="0" /></div>
  <div class="navtype" id="navbar"> About Us  |  Who We Are  |  Permanent Placement  |  Contract Staffing  |  Outplacement  |  Resources  |  Current Openings</div>
  <div id="contentwrapper">
    <div id="leftcolumn">    
    <table width="137" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td> </td>
          <td> </td>
        </tr>
      </table>
      </div>
    <div id="content">
      <table width="552" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td> </td>
          <td> </td>
        </tr>
      </table>
    </div>
<div id="rtcolumn">Content for  id "rtcolumn" Goes Here</div></div>
</div>
</body>
</html>

Tables are expanding because you have requested they do so by including 'td & th' in the below css:
body,td,th {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10px;
    color: #000;
    height: auto;
    width: 967px;
Amend to:
body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10px;
    color: #000;
    height: auto;
    width: 967px;

Similar Messages

  • I am trying to buy an app. I had to update my credit card info. It won't take the update and the screen is frozen - I cannot go back into the app store.

    I am trying to buy an app on my Iphone5. I needed to update my credit card info. It wont take the updated info and the screen is now frozen. I cannot go back into the app store

    It's a network issue, not an account balance issue. Troubleshoot your network or just restart your iPod and/or router, try connecting to the Store a bit later, or try the download in iTunes on your computer and then sync the purchase to your device.

  • How to write the JTables Content into the CSV File.

    Hi Friends
    I managed to write the Database records into the CSV Files. Now i would like to add the JTables contend into the CSV Files.
    I just add the Code which Used to write the Database records into the CSV Files.
    void exportApi()throws Exception
              try
                   PrintWriter writing= new PrintWriter(new FileWriter("Report.csv"));
                   System.out.println("Connected");
                   stexport=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
                   rsexport=stexport.executeQuery("Select * from IssuedBook ");
                   ResultSetMetaData md = rsexport.getMetaData();
                   int columns = md.getColumnCount();
                   String fieldNames[]={"No","Name","Author","Date","Id","Issued","Return"};
                   //write fields names
                   String rec = "";
                   for (int i=0; i < fieldNames.length; i++)
                        rec +='\"'+fieldNames[i]+'\"';
                        rec+=",";
                   if (rec.endsWith(",")) rec=rec.substring(0, (rec.length()-1));
                   writing.println(rec);
                   //write values from result set to file
                    rsexport.beforeFirst();
                   while(rsexport.next())
                        rec = "";
                         for (int i=1; i < (columns+1); i++)
                             try
                                    rec +="\""+rsexport.getString(i)+"\",";
                                    rec +="\""+rsexport.getInt(i)+"\",";
                             catch(SQLException sqle)
                                  // I would add this System.out.println("Exception in retrieval in for loop:\n"+sqle);
                         if (rec.endsWith(",")) rec=rec.substring(0,(rec.length()-1));
                        writing.println(rec);
                   writing.close();
         }With this Same code how to Write the JTable content into the CSV Files.
    Please tell me how to implement this.
    Thank you for your Service
    Jofin

    Hi Friends
    I just modified my code and tried according to your suggestion. But here it does not print the records inside CSV File. But when i use ResultSet it prints the Records inside the CSV. Now i want to Display only the JTable content.
    I am posting my code here. Please run this code and find the Report.csv file in your current Directory. and please help me to come out of this Problem.
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.table.*;
    public class Exporting extends JDialog implements ActionListener
         private JRadioButton rby,rbn,rbr,rbnore,rbnorest;
         private ButtonGroup bg;
         private JPanel exportpanel;
         private JButton btnExpots;
         FileReader reading=null;
         FileWriter writing=null;
         JTable table;
         JScrollPane scroll;
         public Exporting()throws Exception
              setSize(550,450);
              setTitle("Export Results");
              this.setLocation(100,100);
              String Heading[]={"BOOK ID","NAME","AUTHOR","PRICE"};
              String records[][]={{"B0201","JAVA PROGRAMING","JAMES","1234.00"},
                               {"B0202","SERVLET PROGRAMING","GOSLIN","1425.00"},
                               {"B0203","PHP DEVELOPMENT","SUNITHA","123"},
                               {"B0204","PRIAM","SELVI","1354"},
                               {"B0205","JAVA PROGRAMING","JAMES","1234.00"},
                               {"B0206","SERVLET PROGRAMING","GOSLIN","1425.00"},
                               {"B0207","PHP DEVELOPMENT","SUNITHA","123"},
                               {"B0208","PRIAM","SELVI","1354"}};
              btnExpots= new JButton("Export");
              btnExpots.addActionListener(this);
              btnExpots.setBounds(140,200,60,25);
              table = new JTable();
              scroll=new JScrollPane(table);
              ((DefaultTableModel)table.getModel()).setDataVector(records,Heading);
              System.out.println(table.getModel());
              exportpanel= new JPanel();
              exportpanel.add(btnExpots,BorderLayout.SOUTH);
              exportpanel.add(scroll);
              getContentPane().add(exportpanel);
              setVisible(true);
          public void actionPerformed(ActionEvent ae)
              Object obj=ae.getSource();
              try {
              PrintWriter writing= new PrintWriter(new FileWriter("Report.csv"));
              if(obj==btnExpots)
                   for(int row=0;row<table.getRowCount();++row)
                             for(int col=0;col<table.getColumnCount();++col)
                                  Object ob=table.getValueAt(row,col);
                                  //exportApi(ob);
                                  System.out.println(ob);
                                  System.out.println("Connected");
                                  String fieldNames[]={"BOOK ID","NAME","AUTHOR","PRICE"};
                                  String rec = "";
                                  for (int i=0; i <fieldNames.length; i++)
                                       rec +='\"'+fieldNames[i]+'\"';
                                       rec+=",";
                                  if (rec.endsWith(",")) rec=rec.substring(0, (rec.length()-1));
                                  writing.println(rec);
                                  //write values from result set to file
                                   rec +="\""+ob+"\",";     
                                   if (rec.endsWith(",")) rec=rec.substring(0,(rec.length()-1));
                                   writing.println(rec);
                                   writing.close();
         catch(Exception ex)
              ex.printStackTrace();
         public static void main(String arg[]) throws Exception
              Exporting ex= new Exporting();
    }Could anyone Please modify my code and help me out.
    Thank you for your service
    Cheers
    Jofin

  • Itunes cannot read contents of the ipod.  go to summary tab in ipod preferences and click restore to restore to factory settings

    I plugged in my ipod to install the latest version of itunes on my computer and I got this message:  "itunes cannot read contents of the ipod.  go to summary tab in ipod preferences and click restore to restore to factory settings".  I can't get rid of it and now have zero songs on my ipod but all of my songs are in my library.  Help, please.

    Sorry, my mistake, the nano has a flash-based drive so most of that post won't apply, although you might see if the DFU restore section works.
    Try also suggestions from iPod nano: Error message saying that iPod 'could not be identified properly'
    tt2

  • I am unable to get past the apple login screens on my iPad to access my settings menu for a new home network. My password is not recognized so I cannot even get into the settings mode to make a chance. How can I get past the Apple logins?

    I am unable to get past the apple login screens on my iPad to access my settings menu for a new home network. My Apple password is not recognized so I cannot even get into the settings mode to make a chance. How can I get past the Apple logins?

    Hey Dpcupcake,
    If you can not get past the sign in screen on your iPad, you will need to use the steps in this article to recover use of your iPad -
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • MuVo - When new track begins I cannot rewind back into the end of the previous tra

    Hi all, here is my problem. i tried to put it in a formal way to ease the reading.
    Player: Creative MuVo 52MB TX FMFirmware: Creative MuVo TX FM Audible Firmware Upgrade Version .3.03
    Problem: When new track begins I cannot rewind back into the end of the previous track. If I want to hear the end of a track I have to start from the beginning and fast <SPAN>froward through the tracks entirety towards the end of the track. This is especially frustrating when listening to a 20+ minute podcast or audiobook and all I want is to here the last couple of minutes. As stated in the user manual "frequent use of fast <SPAN>froward/reverse" will use more battery power and this is not an acceptable solution for wanting to hear the last couple of minutes. (Usually this happens when i am interrupted and the next track has already started, etc.)
    Suggested solution: If a user is at 00:00:00 and the user holds the rewind button then user shall start rewinding from then end of the last track. An analogy of this would be if you fast <SPAN>froward to a new chapter on a DVD player and then press and hold rewind, it allows you to rewind through the end of the skipped chapter. Please include this functionality in the next firmware update.
    thanks for your time, nickc

    Nick,
    Great suggestion. FYI, I have similar hardware to yours:
    Player: Creative MuVo 256MB TX FMFirmware: Creative MuVo TX FM Audible Firmware Upgrade Version .3.03
    I imagine there are several ways to implement your idea. One way would be to have the firmware let you: () begin rewinding from any point in the current program; (2) when rewind reaches the 00:00:00, a tone could be emitted (this would alert the user that s/he has reached the beginning of the current program); (3) then the user could either decide to stop there or (4) by holding down the rewind, say, 2-3 seconds, the rewind would be forced to 'skip' back to the end of the previous program.
    If the user is not listening to the program while rewinding (and thus cannot hear the tone), this should not be a problem, as the display would make clear what is happening.
    On another issue...
    Regarding your comment "...creative does a good job with the timing of the fast-foward/rewind feature available now," I beg to differ. In my experience, the timing of the TX FM's rewind makes it very difficult for a user to do an 'instant replay' of a short audiobook section. This is frequently needed when a narrator's voice is unclear, or the user is distracted by something.
    For example, say I want to review the last 5 seconds. This is impossible, as the rewind specifications cause the rewind to behave approximately as follows:
    - First 3 seconds realtime rewinds program 6-7 seconds
    - After that, each second realtime rewinds 30 seconds; so each additional second rewinds 30 seconds
    - Of course, it gets faster and faster thereafter (in 30-second, 5-minute, and 5-minute segments)
    You see, therefore, that it is impossible to efficiently skip back 5 seconds, as the rewind goes back 6-7 seconds, then skips all the way back to the 37-second point. The only way to go back 5 seconds (a couple of sentences) is to: () overshoot your target by an unknown number of seconds, then wait a long time until your desired segment appears, or (2) tediously rewind 5-6 seconds; wait until the TX FM is ready for another rewind; rewind another 5-6 second segment; wait again; then rewind another short segment to get to the 5-seconds-back point. For the most part I use method (2), but do not always release the rewind button in time each of 3 times before the accelerated rewind kicks in. What a drag!
    The Audible Otis player, as I recall, did not have this particular problem, though its buttons were harder to manipulate.
    I would doubt whoever designed this rewind specification has experience listening to audiobooks.
    CREATIVE: We need a rewind function that eventually picks up speed, but I would recommend that the most recently played approx. 30 seconds of program time be accessible via a rewind compressed to appox. 5 seconds realtime.
    Catherina & Jeremy, are you listening?
    Roger

  • Why cannot QuickVPN reach into the shared folder behind WRVS4400n

    Why cannot QuickVPN reach into the shared folder behind WRVS4400n ?
    I can remotly log onto the router WRVS4400n through QuickVPN from my WinXP PC, but i cannot reach into the folder behind the router. After I log onto the router, i cannot find a new interface appearing in Network Connections. I do not have a new IP address which allow me to reach into the folder behind the router. Anyone can do me a favor ? Please see three attached pic. Thank you so much.

    Today, 11:29 PM
    I think it has something to do with WPA2/AES key renewals.

  • Limitations of trial version 13? I cannot load pictures into the photomerge panorama window either from' browse' or 'add open files'.

    On Adobe's web site it states the trial version has all functionality.  FAQ, common questions & answers | Adobe Photoshop Elements 13 "These trial versions are fully functional, so every feature and aspect of the product is available for you to test-drive. Product trials can easily be converted for unrestricted use without the necessity to reinstall the software in most cases."
    However, I cannot load pictures into the photomerge panorama window either from' browse' or 'add open files'. When I select either way nothing happens.This happens if I enter panorama from photo editor and/or organizer.
    Can anybody enlighten me about this?
    Thanks,
    Barry

    It seems your Samba is denying access to these files & dirs. My best guess would be that either the Samba user is not allowed to write (and read) those (in which case you'd have to modify the permissions accordingly) or Samba sets, when the share is mounted, the permissions such that your user is not allowed to read and write (you may in this case try to just set permissions for you to allow you what you want to do; or use "create mask" or "directory mask" or "writable" in your samba config. ).
    Also, what do the logs say about this? According to your samba conf they are in /var/log/samba/%m.log where %m is the hostname or IP.

  • Individual entries cannot be put into the change request (message SV141)

    Hi,
    I am trying to save an activity that I have created for SOP (Production>SOP>Function>Mass Processing>Define Activities).
    When I click on the IMG node, I get the following message:
    "Individual entries cannot be put into the change request
    Message no. SV141
    Diagnosis
    For technical reasons, the entries cannot be fully specified in the change request. There are two possible reasons for this:
    1. The key of an entry is longer than 120 characters. All entries whose keys match up to character 119, are then copied into the change request, rather than an individual entry.
    2. The key of an entry contains fields of special data types, for example, packed numbers. The key can only be specified in the change request up to the first such field from the left.
    all entries whose keys match up to character 12 are copied into the change request, rather than a single entry.
    System Response
    The selected entry is copied into the change request correctly, but other entries may be copied as well."
    Can anyone explain why and if I have to do something to ensure it is captured in the CTS?
    Thanks,
    Lars

  • My ipod nano 6th gen. is connected to my MacBook.  I have an audio book on the MacBook in Itunes, and cannot load it into the Ipod.  What am I doing wrong?

    My ipod nano 6th gen. is connected to my MacBook.  I have an audio book on the MacBook in Itunes, and cannot load it into the Ipod.  What am I doing wrong?

    Is this audiobook configured to sync to your iPod via it's Books configuration pane in iTunes?  Click on your iPod's device name under Devices in the left hand pane of iTunes.  This will bring you to the Summary tab.  Look for the Books tab along the top and click on it.
    B-rock

  • I cannot print content off the usta web pages

    i cannot print content off the usta web pages; printer is hp officejet pro 8600+; operating system is windows 7-64bit

    hi there,
    could you provide the community with a little more information to help narrow troubleshooting? What browser are you using and are you getting any errors?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Since the iTunes update, DVDs I rip to my computer cannot be imported into the Movies Library.  Why?  How can I fix this?, Since the update, DVDs I rip to my computer cannot be imported into the Movies Library.  Why?  How can I fix this?

    I used be able to save the files in the Movies folder in iTunes Music.  Now, iTunes automatically stores the files in "Home Videos" and files in that folder cannot be imported into the iTunes Library.  Please help. 

    Launch iTunes. Select the movie from Home Videos and right-click > Get Info > Options > Media Kind > Movies.

  • HT2553 My ipod classic 160gb cannot be synced by my windows vista. the library is copied alright but cannot be synced into the ipod; HELP! !

    My ipod classic 160gb cannot be synced by my windows vista computer. The library is copied alright, but the ipod cannot be synced; Help! How can I overcome this, please?

    Hi, Chris,
    I mean, when I load my itune library as usual and the syncing starts, I get the problem as described as follows;
    When I try to sync, I see the songs being copied then I get a message, say after about 45minutes, that, itunes cannot read the ipod contents because the ipod data drive is corrupt. I have tried different things to no avail. It is very fraustrating, and if I may say so, very disturbing.
    I hope somebody can help me, for I can see now that, many people have got similar problems and they haven't been able to solve. I understand this is a common ipod problem and many people have had to abandone their ipods after such problems. It is very hurting because ipods are very expensive to buy, and so to write it off like that is very dis-heartening.

  • I cannot paste pictures into the body of an email whether on Gmail or AOL. It is very frustrating. Can you help?

    I cannot paste pictures from a website or a document into the body of an email. I use Gmail and AOL and cannot insert pictures. No problem on my old PC, just my MacBookPro. Using MountainLion.
    Any instructions to solve my problem?

    So I can just put my output variable into the email body variable.... since it's a table with headers should I do anything special for formatting the table?
    My output now looks like :
    ServerName
    Owner
    SupportContact
    SupportExternal
    ServerDescription
    Server1
    Me
    Me
    TrendMicro OfficeScan 10.5
    Server2
    Me
    Me
    TrendMicro Deep Security Test
    Server3
    Me
    Me
    Test Server
    Server4
    Me
    Me
    Application Server
    Well it's a little garbled there but you get the idea

  • Itunes cannot read contents if the ipod

    when plugged in it has windows display a warning that reads "itunes cannot read he contents of the ipod, go to summary tab in ipod preference and click restore to restore to factory settings" i have tried the 4 r's but the 5th r i am unable to do unless itunes can read the ipod right?? how do i restore this thing (nano) if itunes wont read it and allow me to go to ipod preferences???

    this happened to me...another way to restore the ipod is to open it in my computer and right click on the drive your ipod is in . then choose "format" in format press start and it will restore your ipod (meaning it will delete everything off of it) once this is done try to connect to itunes...if that does not work, right click on "my computer" click "manage" then select "services and applications", then "services", then select "IPOD service"...if its not already, connect your ipod. press "stop" then "start"....then try it again in itunes.
    the end

Maybe you are looking for