Viewing 7 replies - 1 through 7 (of 7 total)
  • gornik321

    (@gornik321)

    It works fine in fireforx. Try to edit the css.
    In the style.css file look for:
    #content {
    font-size: 1.2em
    }

    and add this line
    overflow: hidden; or word-wrap: break-word;.
    The code:
    #content {
    font-size: 1.2em
    overflow: hidden;
    }

    Hope this helps

    webgoddess

    (@webgoddess)

    The page.php has an error in the placing of the closing <div> codes. If you compare it carefully with index.php, you will see that the last several lines are just slightly different. Here is the correct code (from the template I am using):

    <?php get_header(); ?>

    <div id="columns">
    <div id="content">

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="post" id="post-<?php the_ID(); ?>">
    <h2 class="pagetitle"><?php the_title(); ?></h2>
    <div class="entrytext">
    <?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>

    <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>

    </div>
    </div>
    <?php endwhile; endif; ?>
    <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
    </div>
    <!-- content -->
    <?php get_sidebar(); ?>
    </div>
    <!-- columns -->
    <?php get_footer(); ?>

    I tried using the CSS route to start, but this did it.

    Thread Starter rohit4all

    (@rohit4all)

    Thanks for prompt reply. Please clarify ?
    It works fine in fireforx. Try to edit the css.

    (( Is this is fne also with IE ??))

    In the style.css file look for:
    #content {
    font-size: 1.2em
    }

    ((I find it in my default as well as classic thems in which I make correction??)

    and add this line
    overflow: hidden; or word-wrap: break-word;.
    The code:
    #content {
    font-size: 1.2em
    overflow: hidden;
    }

    Here I have to add all this
    “””””””””””””””””””””””””.
    overflow: hidden; or word-wrap: break-word;.
    The code:
    #content {
    font-size: 1.2em
    overflow: hidden;
    }
    “””””””””””””””””””””””””””””””
    Or something else ?

    Please reply

    Samuel B

    (@samboll)

    Look at webgoddess’ response – it’s right on.

    Thread Starter rohit4all

    (@rohit4all)

    blog\wp-content\themes\default\page

    I replaced original code given in page.php
    with code given below
    ………………………………………….

    <?php get_header(); ?>

    <div id=”columns”>
    <div id=”content”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2 class=”pagetitle”><?php the_title(); ?></h2>
    <div class=”entrytext”>
    <?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?>

    <?php link_pages(‘Pages: ‘, ”, ‘number’); ?>

    </div>
    </div>
    <?php endwhile; endif; ?>
    <?php edit_post_link(‘Edit this entry.’, ”, ”); ?>
    </div>
    <!– content –>
    <?php get_sidebar(); ?>
    </div>
    <!– columns –>
    <?php get_footer(); ?>
    <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    But nothing happens. Pls help me How to remove this problem. You can see the probs at http://www.achieverspoint.com/blog/

    With regards

    Samuel B

    (@samboll)

    Now you’ve got to fix those long uri’s.
    Instead of:
    http://www.upload2.net/download2/nFfuJ7V9nBrHd62/prolem+solving+set+Computer+science.pdf.html
    Couldn’t you use something like:
    Computer Science
    ?
    Like so:
    <a href="http://www.upload2.net/download2/nFfuJ7V9nBrHd62/prolem+solving+set+Computer+science.pdf.html">Computer Science</a>

    Thread Starter rohit4all

    (@rohit4all)

    Thanks man,

    That was too simple…

    Have wonderful days..

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Side menu goes below’ is closed to new replies.