Forum Replies Created

Viewing 15 replies - 46 through 60 (of 203 total)
  • OK .. do you happen to have a .htaccess file in your root directory where you installed WP ?

    I just don’t understand why it doesn’t display the pages and comments and stuff properly when I click on the links in your sidebar ..

    In your theme source files (sidebar.php most probably) .. you have the code to display the moon phase stuff ..

    One of the lines should be:

    <table width="210" bgcolor="#000000" style="background-color:bgcolor="#000000" " cellpadding="0" cellspacing="0" border="0">

    Change this to:

    <table width="210" bgcolor="#000000" style="background-color:bgcolor="#000000" " cellpadding="0" cellspacing="0" border="0" id="]whatever name you want here]">

    Also following the above code is this:


    <td align="center" style="border: 1px solid #AFB2D8;color:#ffffff;padding-top:4px;padding-bottom:5px;" bgcolor="#000000" nowrap="1">

    Change it to:


    <td align="center" style="border: 1px solid #AFB2D8;color:#ffffff;padding-bottom:5px;" bgcolor="#000000" nowrap="1">

    Hope that helps

    To display the post itself and not the excerpt and link to the pages:

    Change this:


    <?php if(is_category() || is_archive()) { the_excerpt(); } else { the_content(); } ?>

    to:


    <?php the_content(); ?>

    Is that the real source of the files or the source as viewed from the browser?

    I believe you are posting the source as viewed from the browser ..

    To clear the cache:

    Go to “Tools”, “Options” and then under the “Privacy” tab, you can clear you cache.

    Also you might want to disable the cache in WP itself. There was a thread in the forum on how to disable the cache in the wp-settings.php file ..

    I am running out of ideas to give you without being able to look/work directly on it .. ??

    I think some of the stuff is due to the server ..

    Under normal circumstances, it shouldn’t show “Edit” link under the post if you are not logged in, but it does on your site ..

    Did you modify a lot of the code in the theme, maybe you messed up some part .. ?

    Clear your cache ..

    Try taking out this entire part in your header.php file:


    <style type="text/css" media="screen">
    ...
    ..
    ...
    ..
    #
    </style>

    What does that do?

    I have no clue from just looking at your site in my browser what could be wrong .. but definitely something is very wrong ..

    Whatever link I try to go to in your site, it just takes me back to the index page with the single post showing ..

    try navigating through your site using the links for Pages in your sidebar .. you will see what I mean ..

    Check your post.php file, you should find the reference to the_content() in there ..

    Is the same happening in the admin too ?

    Can you login into the admin and go to “Manage” and “Posts” and see what posts are being listed from the database?

    Its very hard to help without actually seeing what is happening ..

    maybe you could post the source of the page here:

    https://pastebin.com

    And that might help ..

    Either you are going to have to go through the posts manually and then remove the divs or write up a PHP script which will do it automatically for all posts ..

    Its not that simple as just telling it to expand after the sidebar ends ..

    You are probably going to have to use a floating sidebar with the text being cleared as long as the sidebar is visible ..

    I can’t even see the post anymore .. all I see if the post meta information (posted in, comments link etc) in huge font on the front page where your post should be ..

    OK

    To take out the top space do this, in your stylesheet you have this bit of code:


    #menu {
    color: #369;
    border-top: 1px solid #CCC;
    padding: 20px 0 10px 0px;
    top: 0;
    margin-left: 600px;
    width:275px;
    position: relative;
    font-size:125%;

    }

    Change it to:


    #menu {
    color: #369;
    border-top: 1px solid #CCC;
    padding: 0px 0 10px 0px;
    top: 0;
    margin-left: 600px;
    width:275px;
    position: relative;
    font-size:125%;

    }

    Add an id to the table which holds the moon phase image, and in your stylesheet add the following:


    #menu [table id here]
    {
    text-align: center;
    }

    That should do the job hopefully ..

Viewing 15 replies - 46 through 60 (of 203 total)