• I am running a WordPress site for an online writing journal. http://www.finelines.org

    I have a page with several photos on it. I was proud of myself because I figured out how to make a table and how to get the photos in rows. It seemed to work okay, but now, when I add one more picture, everything just disappears. I don’t get an error message… I just can’t see any of the photos.

    http://www.finelines.org/2009/09/special-editors/

    That’s the page. As it is, it seems to work fine. If you need me to show you, I can add one more picture so you can see when it doesn’t work.

    Any idea why this would happen?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • You have a very attractive site!

    I think I have been running into a very similar problem. It could be a “table” issue.

    I am beginning to think this thread may be of help to you and me:

    http://ww.wp.xz.cn/support/topic/258194?replies=9

    my problematic page:

    http://choveveitzion.com/plumbing/is-there-a-leak-in-your-toilet/

    if I add anything to the bottom table – my page disappears!

    Avrohom

    I just noticed this tip which also might help us:

    (copied from:
    http://www.amoswong.com/category/internet-computers/wordpress/
    )

    How to Disable WordPress2 Rich Text Editor

    April 22, 2006 at 10:16 am · Filed under WordPress, Internet & Computers, Webmastering, Rants

    RantWordpress 2 by default, comes installed with a rich text editor. I’ve been struggling with some of my blogs as the alignments or formatting that I specify is consistently overwritten by WordPress. I have no idea what or why this happens but it does.

    To alleviate my headaches, all I need to do is turn off the rich text editor and write using HTML codes. The steps to do this is pretty straightforward:

    1. Go to your WordPress Dashboard
    2. Click on the “Users” link
    3. In “Your Profile“, scroll to the bottom of the page
    4. Under the heading “Personal Options“, untick the box next to “Use the visual rich editor when writing”
    5. Click “Update Profile“

    Done! You can now write your blog posts according to whatever formatting or alignments you desire.

    Avrohom

    Thread Starter Zaimejs

    (@zaimejs)

    I will try that. Thank you for looking. I did all the coding in html rather than the Richtext option.

    Another thing you could try is to do the formatting with CSS (this is usually the preferred method).

    (I am currently struggling with the exact issues you are struggling with)

    In your CSS stylesheet you can put something like:

    .row { clear: both; }
    
    .col1 {
    width: 280px;
    float: left;
    padding: 0 10px;
    margin-left: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    border: 1px solid #c0c0c0;
    }
    .col2 {
    width: 280px;
    float: right;
    padding: 0 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    border: 1px solid #c0c0c0;
    }

    and then in your blog you use:

    <div class=”col1″>

    </div>
    <div class=”col2″>

    </div>

    This is what I was shown two weeks ago:

    http://ww.wp.xz.cn/support/topic/350664?replies=3#post-1346379

    This is usually preferred over formatting with tables (fewer problems)

    [signature moderated Please read the Forum Rules]

    Thread Starter Zaimejs

    (@zaimejs)

    Thank you for the links. I am not familiar with CSS coding, but I could try to follow those instructions.

    I’ll try the RTF fix first.

    Anyone else have these issues?

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Disappearing Table?’ is closed to new replies.