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

Similar Messages

  • How do I get text to wrap around a jpeg photo. Pages instructions don't eem to work for me,

    How do I get text to wrap around a jpeg photo. Pages instructions don't seem to work for me. I'm just beginning to use Pages for other than simple word processing.

    I am creating a photo album with captions and have tried to have one caption wrap around a photo image that is part of a series of three overlapping and descending images. I have selected the photo, clicked Inspector etc. with no luck. I did read a previous answer re floating and noticed that both my text and my image have inline in light colour and floating in dark, which I presume means they are both inline. When I try to click on Floating in Object Placement, nothing happens. The option doesn't appear to be "available", unlike the wrap options below, which do light up and indicate what I want to happen. It just doesn't happen and I don't know how to solve the problem.
    I have had to replace my older computer on which I did all of these projects (newsletters, albums, etc.) with an old version of InDesign, which no longer works with the newer OS 10.6. So I'm trying to learn how to do the same types of things with Pages, and it's somewhat frustrating, since text wrap was quite simple with InDesign.
    Stan

  • Trying to get text to wrap ALL the way around either text, images, shapes in Mac Pages. I tried in Pages Word Processing

    I have tried everything to get text to "wrap completely around" other text, images, shapes.  Mac Pages - tried  Word Processing and tried Page Layout.  Inspector, wrap, Floating and Object causes wrap.  The text will ONLY wrap at the TOP and BOTTOM of the object, etc.  No matter which choice I make in Object causes wrapping.  It just doesn't work.  I have worked for hours on this - I can't find a solution.  HELP!

    What version of Pages?
    I suspect you are using Pages 5 in OSX 10.9 not OSX 10.8.4.
    Peter

  • Getting text to wrap in a form field

    How do I get text to wrap in a form field instead of shrinking in size as I type?

    You need to enable the "Multi-line" option for the text field and make the field large enough to display the maximum expected entered text.

  • Pages for ipad2 - how do you get text to wrap around the contours of a picture? Not the simple square wrap, but I saw text following the contours of a bike wheel at the Apple store demo

    Pages for ipad2 - how do you get text to wrap around the contours of a picture?  Not the simple square wrap, but I saw text following the contours of a picture of a bike wheel at the Apple store demo

    Sjazbec,
    Thanks for the reply.
    I did read the help and went through the tutorial - the butterfly text wrap (and the wrap around the curved contour of the bicycle wheel at the Apple store) is the reason I am asking this question.  I don't know how to use one of my own pictures and tell Pages what contour to wrap around.  Is there some additional image editing software that I need to "creatively crop" one of my own pictures, so that Pages will be able to wrap around that contour?
    Thanks / Danke!!

  • 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

  • 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.

  • 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();
    }

  • 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

  • Getting text to wrap

    When I enter a new event - sometimes the text "wraps," dropping down to a second and third line if need, and I can see all the info. Other times, it doesn't wrap, and I see only the info that fits on the first line. Looked at preferences and the different menus. Don't know how to set/reset this. Don't know why one type of event wraps and others don't. Please help!

    Only words that can be hyphenated wrap correctly in iCal.
    So London works, but not Toulouse. Buying works, but not Peking.
    Strange that this bug has not been reported before?

  • I have changed to a samsung note3 but now i cant get text from some iphones how can i fix that

    I have changed to a samsung note 3, but now i cannot receive any texts from an iphone
    I have already tried turning everything off in the phon eend imessage.  Any other ideas on how to fix this?

    Also see:
    <http://m.samsung.com/us/support/SupportOwnersFAQPopup.do?faq_id=FAQ00053450&fm_s eq=62995>
    <https://discussions.apple.com/thread/6023459>

  • I can't get Text Wrap to work for me CS5

    Hello,
    Okay, time for my stupid question of the week! I am having lots of trouble getting text to wrap around an object. I'm almost embarassed to ask this, since it's so basic.
    I am using the 30 day trial version of CS5.
    I have tried everything. I've followed the following tutorials and nothing happens when I press Object >Text Wrap>Make.
    http://designertoday.com/Tutorials/Illustrator/5616/Wrap.text.around.Image.Illustrator.CS3 .Tutorial.aspx
    http://www.justskins.com/forums/wrapping-text-around-an-37063.html
    http://help.adobe.com/en_US/illustrator/cs/using/WS714a382cdf7d304e7e07d0100196cbc5f-63efa .html
    http://www.blog.spoongraphics.co.uk/tutorials/wrapping-text-around-an-image-in-illustrator
    All the tutorials have different instructions. I have tried them all and tried so many variations. From what I can piece together, this is the correct sequence:
    create new page
    use the rectangle tool to create a rectangle
    paste text in rectangle (I've also typed it in)
    file>place and select image (I've tried pasting it in too)
    select only image and ensure image lies above text in layer box
    object>text wrap>make
    I've tried all sorts of variations - selecting image and text, selecting text only, pasting image instead of placing and  get the same result.
    Any assistance that can be offered would be much appreciated.
    Mary

    Text and object MUST be on the same layer.
    Text MUST be on top of object to be wrapped.
    Text MUST be area text.
    Are all of the above true?
    From reading your steps, you've got the text behind the object to wrapped, becuase you created the text, then placed/pasted an image. If you were to place/paste the image, then create the text, you'd be set.
    Select the text and choose Object > Arrange > Move to front. Then try wrapping the text.

  • Switched to android and can't get texts from apple users, Switched to android and can't get texts from apple users

    switched to galaxy 3 and cant' get texts from people that used to imessage me.  I have tried everything but swtiching my phone number.

    If you no longer have access to your iPhone, you will need to contact Apple for help deactivating your phone number from their iMessage system so those with iPhones will send normal text messages to your phone number instead of iMessages.
    Reference: http://support.apple.com/kb/ts5185
    iOS: Deactivating iMessage
    Symptoms
    If you experience any of these symptoms, you may want to deactivate iMessage:
    You can't receive SMS on your non-Apple device when another person sends them using an iPhone.
    You can't send SMS to a non-Apple device because they send as an iMessage.
    Resolution
    If you experienced the symptoms above, your cellular phone number may still be registered with iMessage. When you turn iMessage on with your iPhone, iMessage registers your cellular telephone number.
    To deregister your phone number, tap Settings > Messages and turn iMessage off.
    If you can't deactivate iMessage after you perform the steps above or you can't access the iPhone, please contact Apple Support.

Maybe you are looking for

  • Changes to table not reflected in Java query

    Hello All! I'm running Oracle J Developer 11g. I am quite new to executing .sql commands using Java and so am feeling my way around. I used the IDE's SQL Worksheet and created some tables in a database. I also used this SQL Worksheet to populate the

  • PhotoShop CS4 Fatal Error on Mac

    Hi,  Can anyone help with Photoshop CS4 issue on Mac OS 10.6.8? Getting- 'Fatal Error' missing component/library/applications/adobe version cue CS4/client4.0.0/version cue.framework  -  message when I try to open a file Before this, with the help of

  • When downloading the new update to my windows 7 I get the error MSVCR80.dll not available.  I can't access my itunes at all.  Please help

    When downloading the new update to my windows 7 I get the error message MSVCR80.dll not available.  I can't access my itunes at all.  Please help

  • Problem combining files into a single PDF

    Hi I wonder if anyone has experienced this. Everytime I try to combine various pdfs into a single one, Acrobat Pro seems to crash or get stuck no dialogue window will come up and the only thing I can see is what I circled in red: Hope somebody can he

  • Acknowledgement problem

    Hi All, I'm having some weird problems with acknowledgements in XI. I have an interface which runs with the aid of BPM. In this BPM, an acknowledgement is expected, and when it is not received, there is a timeout set in place. So far so good. Now whe