Cant Get Text To Show In JTextArea

Hi guys,
I'm trying to create a very simplistic GUI where the output of an IRC server is shown in a JTextArea. However for the life of me I can not get any text at all to show in the text area. Here's the class that creates the user interface:
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;
public class SwingTest extends javax.swing.JFrame implements ActionListener {
     JButton connect = new JButton("Connect");
     JTextArea chat = new JTextArea();
    public SwingTest() {
         //set the title of the frame
         super("Chat Window");
         //set the size of the frame
         setSize(800, 600);
         //set what happens when the close button is clicked
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         // create the scroll pane to add the text area to
         chat.setLineWrap(true);
         JScrollPane scroll = new JScrollPane(chat, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
         //create the container panel
         JPanel jp = new JPanel();
         //create the layout manager and assign it to the container panel
         BoxLayout horizontal = new BoxLayout(jp, BoxLayout.Y_AXIS);
         jp.setLayout(horizontal);
         //add the text area and button to the container panel
         jp.add(scroll);
         jp.add(connect);
         //add the container panel to the frame
         add(jp);
         //make the frame and its contents visible
         setVisible(true);
         //add an event listener to the connect button
         connect.addActionListener(this);
    public void actionPerformed(ActionEvent event) {
         int temp = 1;
         SockThread mySock = new SockThread();
             try {
                  Thread.sleep(20000);
              while(temp == 1) {
               while(mySock.pinger != false) {
                    chat.append(mySock.getStatus()+ "\n");
                    mySock.pinger = false;
                    break;
             } catch  (InterruptedException ie) {
                  chat.setText("Error " + ie.getMessage());
    public static void main(String[] arguments)  {
         //create an instance of the SwingTest class and let it do its thing
         SwingTest st = new SwingTest();
}

Thanks hiwa, i did what you suggested and created a worker thread, but still I'm getting nothing in that JTextArea. I'm new to working with worker threads though, so if anyone wouldn't taking a look at my code just to see if I'm doing something wrong i would greatly appreciate it.
Here is my worker class:
import javax.swing.*;
public class ChatWorker extends SwingWorker {
     String messages;
     String output;
     JTextArea chat;
     public ChatWorker() {
          super();
     protected String doInBackground() {
          int temp = 1;
          SockThread st = new SockThread();
          try {
               Thread.sleep(20000);
               //Perpetual loop needed to keep checking for server messages
               while(temp == 1) {
               while(st.pinger != false) {
                    messages = st.getStatus();
                    st.pinger = false;
                    break;
          } catch (InterruptedException ie) {
          return messages;
}And here is the update gui class to make use of the worker thread:
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;
import java.beans.*;
public class SwingTest extends javax.swing.JFrame implements ActionListener, PropertyChangeListener {
     JButton connect = new JButton("Connect");
     JTextArea chat = new JTextArea();
     ChatWorker cw;
    public SwingTest() {
         //set the title of the frame
         super("Chat Window");
         //set the size of the frame
         setSize(800, 600);
         //set what happens when the close button is clicked
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         // create the scroll pane to add the text area to
         chat.setLineWrap(true);
         JScrollPane scroll = new JScrollPane(chat, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
         //create the container panel
         JPanel jp = new JPanel();
         //create the layout manager and assign it to the container panel
         BoxLayout horizontal = new BoxLayout(jp, BoxLayout.Y_AXIS);
         jp.setLayout(horizontal);
         //add the text area and button to the container panel
         jp.add(scroll);
         jp.add(connect);
         //add the container panel to the frame
         add(jp);
         //make the frame and its contents visible
         setVisible(true);
         //add an event listener to the connect button
         connect.addActionListener(this);
    public void actionPerformed(ActionEvent event) {
         try {
         cw = new ChatWorker();
         cw.addPropertyChangeListener(this);
         cw.execute();
         } catch (Exception exc) {
    public void propertyChange(PropertyChangeEvent event) {
         try {
              String tempText = (String)cw.get();
              chat.append(tempText + "\n");
         }catch (Exception exc) {
    public static void main(String[] arguments)  {
         //create an instance of the SwingTest class and let it do its thing
         SwingTest st = new SwingTest();
}

Similar Messages

  • Cant get downloads to show the save & run boxes.. Adobe flash player

    Cant get downloads to show the save & run boxes in Adobe Flash Player

    You need to proved more information or a screenshot; I cannot understand what you mean.

  • I cant get contacts to show, I enter but it still says no contacts

    I cant get contacts to show, I enter but it still says no contacts

    I can see contacts in facetime but not in the facetime app

  • Cant get icloud to show in Outlook 2010 . it is added in.

    I have just moved onto a new computer,PC , installed Office 2010 and managed to get mail accounts sorted but not contacts or calender appointments. Was hoping to grab these from Icloud, but II cant get it to show in Outlook. I have downloaded the addin, and that shows in 'addins' but not available in outlook itsel. Help!

    It's very strange that the other commands work but not the GotoSlide one. Are the paths you use the same?
    _root.yourmoviecliploaderinstancename_mc.rdcmndGotoSlide = 4;
    _root.yourmoviecliploaderinstancename_mc.rdcmndPause = 0;
    _root.yourmoviecliploaderinstancename_mc..rdcmndResume = 1;
    You could also try to add the instance "movie" to your path. I've seen that a couple of times and also in an answer from Adobe.
    _root.yourmoviecliploaderinstancename_mc.movie.rdcmndGotoSlide = 4;
    _root.yourmoviecliploaderinstancename_mc.movie.rdcmndPause = 0;
    _root.yourmoviecliploaderinstancename_mc.movie.rdcmndResume = 1;
    In regards to redoing the project in CP3 you could actually copy/paste the slides from CP4 to CP3. I just had to do that with a big project we created in CP4 but for some weird reason all the embedded animations and sounds played on the first slide of the project when we published it. There was no way we could fix it (we tried all possible solutions) so we had to revert back to CP3. Fortunately it's possible to copy & paste slides directly from CP4 and into CP3. If you have used any CP4 specific solutions they won't work but otherwise you should be fine. The only think we lost in the copy / paste process was the timing of buttons/click boxes so we needed to redo those. Still it was far better than having to create the entire project from scratch in CP3.
    /Michael

  • Cant get subpanels to show

    Hi i have an application that uses subpanels within a panel. For some reason only one (the northern region panel) is showing up and i cannot figure out why. I have banged my head for hours and cant get it to work . If any one has any suggestions it would be greatly appreciated...thanks in advance!
    import  java.awt.*;
    import  java.awt.event.*;
    import  javax.swing.*;
       A GUI application with a button for which the number
       of clicks is kept track of and displayed
       @author Jared Letendre
       @version 09-18-07
    public class NicerDiceRoller extends GameDie
           creates a NicerDiceRoller frame
           @param args not used here
        public static void main(String args[])
            RollerFrame mainFrame = new RollerFrame();
            mainFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );   
            mainFrame.setVisible(true);
       A frame with a panel containing six labels and three buttons
    class RollerFrame extends JFrame
           constructs a RollerFrame frame instance
        public RollerFrame()
            this.setTitle("Dice Roller");
            this.setSize(this.DEFAULT_WIDTH, this.DEFAULT_HEIGHT);
            // add RollerPanel panel to frame
            RollerPanel panel = new RollerPanel();
            this.add(panel);
        // data fields
        private final static int DEFAULT_WIDTH = 400;
        private final static int DEFAULT_HEIGHT = 400;
       A panel with six labels and three buttons, that displays the value of one of three dice
       that are rolled when each button has been clicked. Keeps track of sum of all rolls
    class RollerPanel extends JPanel
           constructs a RollerPanel panel instance
        public RollerPanel()
            this.setLayout(new BorderLayout());
            // create the labels for the northern panel
            JPanel nPanel = new JPanel();
            this.add(nPanel, BorderLayout.NORTH);
            JLabel welcome = new JLabel("Nicer Dice Roller");
            JLabel myName = new JLabel("By: Jared Letendre");
            welcome.setForeground(Color.BLUE);
            nPanel.add(welcome);
            nPanel.add(myName);
            // create the label for the southern panel
            JPanel sPanel = new JPanel();
            rollValue = new JLabel();
            rollValue.setForeground(Color.BLUE);
            this.add(sPanel, BorderLayout.SOUTH);
            sPanel.add(rollValue);
            // create the spacer panels for east and west regions
            JPanel leftPanel = new JPanel();
            JLabel leftSpace = new JLabel("     ");
            this.add(leftPanel, BorderLayout.WEST);
            JPanel rightPanel = new JPanel();
            JLabel rightSpace = new JLabel("     ");
            this.add(rightPanel, BorderLayout.EAST);
            leftPanel.add(leftSpace);
            rightPanel.add(rightSpace);
            // create the labels and buttons for the center panel
            JPanel cPanel = new JPanel();
            cPanel.setLayout(new GridLayout(3, 2, 10, 5));
            this.add(cPanel, BorderLayout.CENTER);
            JButton die1 = new JButton("Roll Dice #1");
            die1.setActionCommand("firstDie");
            die1.setForeground(Color.BLUE);
            die1.setBackground(Color.RED);
            cPanel.add(die1);
            JButton die2 = new JButton("Roll Dice #2");
            die2.setActionCommand("secondDie");
            die2.setForeground(Color.BLUE);
            die2.setBackground(Color.RED);
            cPanel.add(die2);
            JButton die3 = new JButton("Roll Dice #3");
            die3.setActionCommand("thirdDie");
            die3.setForeground(Color.BLUE);
            die3.setBackground(Color.RED);
            cPanel.add(die3);
            rollSum = new JLabel();
            dice1Count = new JLabel();
            dice2Count = new JLabel();
            dice3Count = new JLabel();
            cPanel.add(dice1Count);
            cPanel.add(dice2Count);
            cPanel.add(dice3Count);
            // add labels and button to this panel
            this.add(rollSum);
            // create button action (so dice will be rolled),
            //    and associate that action with corresponding button
            RollerAction action = new RollerAction();
            die1.addActionListener(action);
            die2.addActionListener(action);
            die3.addActionListener(action);
        } // end RollerPanel constructor
           An action listener that rolls a dice based on what button is clicked
        private class RollerAction implements ActionListener
               decides which button was clicked and rolls the corresponding dice
               displays value of that roll
               accumulated the total of the three dice and displays it.
            public void actionPerformed(ActionEvent event)
                if((event.getActionCommand()).equals("firstDie"))
                     dice1.roll();
                     RollerPanel.this.rollValue.setText("Dice 1 rolled a: " + dice1.getTop());
                     temp1 = dice1.getTop();
                     RollerPanel.this.dice1Count.setText("Dice 1 rolled " + dice1.getNumRolls() + " times");
                if((event.getActionCommand()).equals("secondDie"))
                     dice2.roll();
                     RollerPanel.this.rollValue.setText("Dice 2 rolled a: " + dice2.getTop());
                     temp2 = dice2.getTop();
                     RollerPanel.this.dice2Count.setText("Dice 2 rolled " + dice2.getNumRolls() + " times");
                if((event.getActionCommand()).equals("thirdDie"))
                     dice3.roll();
                     RollerPanel.this.rollValue.setText("Dice 3 rolled a: " + dice3.getTop());
                     temp3 = dice3.getTop();
                     RollerPanel.this.dice3Count.setText("Dice 3 rolled " + dice3.getNumRolls() + " times");
                total = temp1 + temp2 + temp3;
                RollerPanel.this.rollSum.setText("Your total roll is: " + total);
        // data fields for RollerPanel
        int total = 0;
        int temp1, temp2, temp3;
        JLabel rollValue;
        JLabel rollSum;
        JLabel dice1Count;
        JLabel dice2Count;
        JLabel dice3Count;
        GameDie dice1 = new GameDie();
        GameDie dice2 = new GameDie();
        GameDie dice3 = new GameDie();
    } // end of class RollerPanelEdited by: jaredL on Oct 6, 2007 12:14 PM

    this line, near end of RollerPanel constructor is the problem
    this.add(rollSum);
    you've set RollerPanel as a BorderLayout, so by not specifying 'where' in the BorderLayout
    rollSum is to go, it defaults to CENTER, effectively knocking out cpanel (the panel with the buttons)

  • I changed to an android and now cant get text from some iphone users any suggestions??

    I have just switched to an android and now am having problems getting text from some iphone users, and suggestions as to how I can fix this?

    Hi mango72860,
    Thanks for visiting Apple Support Communities.
    If you're not receiving text messages from iPhone users, see this article for help:
    iOS: Deactivating iMessage
    http://support.apple.com/kb/TS5185
    Best Regards,
    Jeremy

  • Cant get iMovie08 to show all photos that are in iphoto.

    Can't get iMovie08 to show all photos that are in iphoto.
    only shows about 30, when there are actually about 60 or so in one album.
    any ideals?

    Can't get iMovie08 to show all photos that are in iphoto... only shows about 30, when there are actually about 60 or so in one album... any ideals?
    Do the photos display correctly in the media browser when the mail library ("iPhoto") heading is selected? If so, you could simply add the photos from the library rather than the specific album. Alternately, if you have to select your photos from an "album," you could try reselecting the photos in the main library in the iPhoto application and create a different album to see if all photos then show up in the secondary album in the iMovie media browser.
    If the "missing" photos do not show up under the main "iPhoto" heading in the iMovie media browser and do not show up in the main library in the iPhoto application, then the files may be corrupted. In this case, simply re-import the original files if possible. You could also try to force a rebuilding of the thumbnail cache, but this is usually done automatically when the application itself detects inefficiencies in thumbnail access or when the application is updated. In any case, there does not appear to be a manual menu option to do this arbitrarily when the user so desires. I suppose you could try to locate and delete the cache manually and hope this forces an automatic rebuild the next time the iPhoto application is opened but I am personally not that familiar with the package structure to advise such action at this time. You might check the iPhoto forum and see if anyone can help you further in this area of endeavor.

  • Iphone 5 broke switched to old iphone 4 but cant get texts from other iphone users cant do anything with iphone 5 like i said its wayy broke

    IPhone 5 broke switched to old iPhone 4 but cant receive texts from other iPhone users cant do anything with iPhone 5 screen does not work

    I'm guessing that you turned off the iPhone 5? If so, then are you using the same phone number as the 5? You need to go into Settings>Messages>make sure that iMessage is turned on and activated. Then go the Send & Receive and find out if your current number is checked.

  • I switchedfrom an Iphone to an android and now I cant get text messages from I phones

    I need to know why I cant receive text messages from people with I phones, I just switched from an I phone to an android.

    The reason is you need to de-register your iPhone iMessage.
    iOS: Deactivating iMessage

  • Cant get texts

    my screen is messed up. how can i get texts in my email so i can read them? i have texts comming in how can i get them to go to my e-mail or something so i can read them?

    You can manually forward each one to your email address - just type in your email instead of a phone number.

  • Getting Text to show on GUI

    I'm about desperate because i spent 3 days on this and i'm am in dire need for help!
    1. First i want to create a GUI that it a quiz.
    2. Create Questions by using Combo Box
    3. Next it creates a text field and allow me to input my answer
    4. following that, after the input is inputted, i click a button that says check answer and it will return if it is correct or false.
    The problem is that code is so messed up that i don't know where to go.
    When i run it, it show me a combo box with 3 questions but before i even answer it, it shows that i'm incorrect.
    Thats why I can't really brief wat i need help in. So, could you write a quick code that can summarize the whole thing. You can use my code and fix it up. Thanks very so much!
    package anaquiz;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class AnAQuiz extends JPanel {
        private JComboBox choice;
        private JLabel label;
        private JTextField text;
        Button CheckAnswer;
        Button TryAgain;
        private String Answer1 = "Wilson";
        private String Answer2 = "Ace";
        private String Answer3 = "Yes";
        private String input = " ";
        boolean Answer = false;
        JLabel testresult = new JLabel("");
    public AnAQuiz() {
            choice = new JComboBox();
            label = new JLabel();
            label.setBackground(Color.blue);
            choice.addItem("Tennis Question #1");
            choice.addItem("Tennis Question #2");
            choice.addItem("Tennis Question #3");
            text = new JTextField(20); //step 4
            Listener listen = new Listener();
            choice.addActionListener(listen);
            setLayout(new BoxLayout(this, 0));
            add(choice);
            add(label);
            add(text);
            add(testresult);
    private class Listener implements ActionListener {
    public void actionPerformed(ActionEvent event ) {
       int c = choice.getSelectedIndex();
         switch (c) {
                 case 0:
                    label.setText("Whats the famous tennis brand that begins with 'W'?");
                    if (Answer1.equals(input))testresult.setText("Correct");
                  else { testresult.setText("Incorrect");
                     break;
                 case 1:
                    label.setText("What do you call when someone misses a serve?");
                    if (Answer2.equals(input))testresult.setText("Correct");
                   else { testresult.setText("Incorrect");
                    break;
                 case 2:
                    label.setText("Should you shake hands after a match?");
                    if (input.equals(Answer3))testresult.setText("Correct");
                     else{
                         testresult.setText("Incorrect");
                    break;
          testresult.setVisible(false);
    public static void main(String[] args)    {
            JFrame frame = new JFrame("Quiz");
            frame.getContentPane().add(new AnAQuiz());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
          //  frame.show();
            frame.setVisible(true);
    }

    package anaquiz;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class AnAQuiz extends JPanel {
        private JComboBox choice;
        private JLabel label;
        private JTextField text;
        Button CheckAnswer;
        Button TryAgain;
        private String Answer1 = "Wilson";
        private String Answer2 = "Ace";
        private String Answer3 = "Yes";
        private String input = " ";
        boolean Answer = false;
        JLabel testresult = new JLabel("");
        public AnAQuiz() {
            choice = new JComboBox();
            label = new JLabel();
            label.setBackground(Color.blue);
            choice.addItem("Tennis Question #1");
            choice.addItem("Tennis Question #2");
            choice.addItem("Tennis Question #3");
            text = new JTextField(20); //step 4
            ButtonListener listen = new ButtonListener();
            CheckBoxListener listen1 = new CheckBoxListener();
            choice.addActionListener(listen);
            choice.addActionListener(listen1);
            setLayout(new BoxLayout(this, 0));
            add(choice);
            add(label);
            add(text);
            testresult.setVisible(false);
            add(testresult);
        private class  CheckBoxListener implements ActionListener {
            public void actionPerformed(ActionEvent event) {
                int c = choice.getSelectedIndex();
                switch (c) {
                case 0:
                    label.setText(
                            "Whats the famous tennis brand that begins with 'W'?");
                    break;
                case 1:
                    label.setText("What do you call when someone misses a serve?");
                    break;
                case 2:
                    label.setText("Should you shake hands after a match?");
                    break;
            private class  ButtonListener implements ActionListener {
                public void actionPerformed(ActionEvent event) {
                    int c = choice.getSelectedIndex();
                    if (Answer1.equals(input)) testresult.setText("Correct");
                    else
                        testresult.setText("Incorrect");
                    if (Answer2.equals(input)) testresult.setText("Correct");
                    else
                        testresult.setText("Incorrect");
                    if (input.equals(Answer3)) testresult.setText("Correct");
                    else
                        testresult.setText("Incorrect");
            public static void main(String[] args) {
                JFrame frame = new JFrame("Quiz");
                frame.getContentPane().add(new AnAQuiz());
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.pack();
                //  frame.show();
                frame.setVisible(true);
    }now it has no errors but correct and incorrect doesn't show after i type in the answer in the textfield after hitting the enter button

  • HOW DO I STOP IMESSAGING ON MY PHONE? I HAVE A NEW SAMSUNG PHONE AND CANT GET TEXT MESSAGES

    HOW DO I STOP IMESSAGING ON MY IPHONE 4? I BOUGHT A NEW SAMSUNG PHONE AND AM NOT GETTING ALL MY TEXT MESSAGES?

    Bcyr71 wrote:
    HOW DO I STOP IMESSAGING ON MY IPHONE 4? I BOUGHT A NEW SAMSUNG PHONE AND AM NOT GETTING ALL MY TEXT MESSAGES?
    And this page on Samsung's own website did not give you any clues??
    http://www.samsung.com/us/support/faq/FAQ00053450/62995

  • Cant get Motocast to show music on phone?

    I downloaded the Motocast on PC and the phone picked up on my documents which have pics and the picture file plus videos. I then decided to download a music site onto PC called Imesh and it lets me download songs onto PC but now when I get on phone it does not bring the music up on phone just shows Picture, document and video files. I go on PC to Motocast and check settings and the Imesh music I downloaded shows it there in a file which I click on and it shows the songs but nothing on the phone for music is there, shows no music. What did I do wrong and how can I fix it.

    Your photos will not show up on www.iCloud.com
    They are only viewable on an iOS device that has photostream enabled
    On a Mac running Lion or later that has photostream enabled in Apple> Preferences > iCloud
    The My Documents/Pictures folder on a Windows machine running the iCloud control panel

  • Getting text to show as hyperlink to navigate to next page

    Im making a website ( first time in visual studios) and its an online library. I have a book info page which shows more information about the book. The problem is that when i search for books how can i make it possible for the book to have a hyperlink
    to navigate towards the book info page. What i am doing right now is using a drop down list and i have a value assigned to each book(1-n) and have the person choose the number of the book and then click enter which navigates to the books more info page. I
    just want to be able to click on the title and navigate straight to it. 
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    namespace BookStoreOnline
    public partial class WebForm2 : System.Web.UI.Page
    private static string test;
    private static string testInfo;
    private static List<Book> resultList;
    private static List<Image> imageList;
    protected void Page_Load(object sender, EventArgs e)
    User.Text += (Session["UserName"]+"");
    protected void Button1_Click(object sender, EventArgs e)
    // if box is filled
    // check criteria selected
    // initiate search based on criteria
    // display results
    if (SearchBox.Text != "")
    resultList = new List<Book>();
    test = SearchCriteria.SelectedItem.Text;
    testInfo = SearchBox.Text;
    switch (test)
    case "ISBN":
    resultList = ((Database)Session["Database"]).SearchISBN(testInfo);
    break;
    case "Title":
    resultList = ((Database)Session["Database"]).SearchTitle(testInfo);
    break;
    case "Author":
    resultList = ((Database)Session["Database"]).SearchAuthor(testInfo);
    break;
    case "Semester":
    resultList = ((Database)Session["Database"]).SearchSemester(testInfo);
    break;
    case "Course":
    resultList = ((Database)Session["Database"]).SearchCourse(testInfo);
    break;
    case "Section":
    resultList = ((Database)Session["Database"]).SearchSection(testInfo);
    break;
    case "Professor":
    resultList = ((Database)Session["Database"]).SearchProfessor(testInfo);
    break;
    case "CRN":
    resultList = ((Database)Session["Database"]).SearchCRN(testInfo);
    break;
    if (resultList.Count == 0)
    NoResults.Text = "No results were found.";
    else
    Results.Text = "";
    for (int i = 0; i < resultList.Count; i++)
    int j = i + 1;
    ListItem bookIndex = new ListItem(j.ToString());
    Results.Text += "<pre>" + j + ". Title: " + resultList[i].Title + "<br>" + "Author: " + resultList[i].Author + "<br><br>" + "</pre>";
    MoreInfoIndex.Items.Add(bookIndex);
    //MoreInfoIndex.Items.Add(bookIndex); is what i am using to navigate to the book info page
    protected void MoreInfoButton_Click(object sender, EventArgs e)
    int k = Convert.ToInt32(MoreInfoIndex.SelectedItem.Text) - 1;
    Session.Add("Book", resultList[k]);
    //Session["Book"] = resultList[k];
    Response.Redirect("BookInfo.aspx");

    Please post questions related to ASP.NET in the ASP.NET forums (http://forums.asp.net ).

  • Floated sidebar - cant' get text to wrap

    I did a float:right to a sidebar column on this page. Instead
    of the main body text wrapping around the sidebar it jumps down
    below. Probably something very simple, but I'm tired of looking at
    it. Any suggestions?
    Page is here:
    http://www.jesseyoung.com/agua/paddle_destinations.shtml
    CSS is here:
    http://www.jesseyoung.com/agua/styles_revised.css
    Thanks!
    -Jesse

    Hello,
    Try getting rid of all the white space between Arboretum and
    the closing </h2> tag, as well as the empty line above it.
    Change this:
    or a limited timeframe.</p>
    <h2>Arboretum                 <!--lots
    of white
    space >                            </h2>
    To this:
    or a limited timeframe.</p>
    <h2>Arboretum</h2>
    Hope that helps,
    Tim

Maybe you are looking for

  • Phone number limbo

    Hi ,  I have been with bt for just over a month now . My bt account online is saying I haven't made any calls and is showing a new number, this number isn't working .my old number is working but I have no caller id etc. Bt recently sent out an engine

  • Why is quicktime 10 playing my exported widescreen movie as 4.3??

    Basically, i hooked my dads new canon hg10 HD camcorder (1440x1080) and imported some clips to play with in FCP 6. The software very kindly told me that the new sequence would need changing to adapt to the new video which it did very nicely. So every

  • TS3297 What can I do for Message 'Your request cannot be processed Error code: 1009  ?

    Message 'Your request cannot be processed Error code: 1009 What can I do for above error?

  • Send SO IDOC while creating DO for consignment fill up

    Hi all, I have a situation now that for consignment fill up, while create the DO, then I need to send out a complete SO IDOC to 3rd-party (also a SAP). Any idea on how to do this? Please help. Running out of ideas now. Million thanks. Best Regards, J

  • 10.7.2 ask for shutdown

    My iMac 21,5" with Lion 10.7.2   12G RAM  2,5Ghz intel core i5 iTunes version 10.5.3 After the iMac wakes up from sleep mode. It ask for shutdown and restart. Have any one tried this before ??