Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter the-wick

    (@the-wick)

    ok, I’ve fixed the side menu issues, and I think I have it where I want it. One more question: Are the grey stripes on the left and right because of the way the background is configured in the style sheets?

    Thread Starter the-wick

    (@the-wick)

    Thanks Katie1.
    I moved the code you suggested to the header section, and now it looks like this which is not what I’m after at all. If you look here, what I’m after is to get the blog entries in the middle section, with no WP header, basically just the ability to see the text of the entry and be able to respond to it.
    I really wish I knew more about this coding method so I can fix it myself. It seems like it should be insanely simple, but I just don’t have the knowledge to figure it out.
    Any more suggestions?

    Thread Starter the-wick

    (@the-wick)

    I know this is probably super frustrating for those who know what they are doing, but I HAVE read all the comments,and I have spent hours scouring my code to figure out what you are talking about. I have also validated the page, and that didn’t help the problem. This is the code, as I am seeing it in my editor, maybe I’m a complete moron, but I don’t see two sets of header information or two style sheets:

    <?php

    require(‘./blog/wp-blog-header.php’);

    ?><html>
    <head>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
    <title>LIT BY THE ‘WICK: all bushwick, all the time</title>

    <link rel=”stylesheet” type=”text/css” href=”https://the-wick.com/blog/wp-content/themes/classic/style.css”&gt;
    </head>

    <body background=”images/bg2.gif”>

    <center>

    <!— header begins here —>
    <table width=”800″ border=”0″ cellspacing=”0″ cellpadding=”0″>

    <tr>
    <td><img src=”images/header.jpg” width=”800″ height=”250″></td>
    </tr>
    </table>
    <!— header ends here —>

    <!— menu begins here —>
    <table border=0 cellpadding=0 cellspacing=0 bgcolor=”#2B2426″ width=800>
    <tr>
    <td width=”67″>Home</td>
    <td width=”21″><img src=”images/space.gif” width=8></td>
    <td width=”52″>Events</td>
    <td width=”21″><img src=”images/space.gif” width=8></td>
    <td width=”38″>Art</td>
    <td width=”21″><img src=”images/space.gif” width=8></td>
    <td width=”91″>Restaurants & Bars</td>
    <td width=”21″><img src=”images/space.gif” width=8></td>
    <td width=”33″>more</td>
    <td width=”21″><img src=”images/space.gif” width=8></td>
    <td width=”64″>more</td>
    <td width=”21″><img src=”images/space.gif” width=8></td>
    <td width=”118″>more</td>

    </tr></table>
    <!— menu ends here —>

    <!— Left Column starts here —>
    <table width=”800″ border=”0″ cellspacing=”0″ cellpadding=”0″>
    <tr>

    <td colspan=”20%” bgcolor=”#46201D”><img src=”images/space.gif” width=143 height=80><br>
    <img src=”images/space.gif” height=8><br>
    <img src=”images/space.gif” width=143 height=80><br>
    <img src=”images/space.gif” height=8><br>
    <img src=”images/space.gif” width=143><br>
    <img src=”images/space.gif” height=8><br>
    <img src=”images/space.gif” width=143 height=80><br>
    <img src=”images/space.gif” height=8><br></td>
    <!— left column end here —>

    <!— middle column starts here —>
    <td colspan=”60%”><div id=”update”>
    <?php define(‘WP_USE_THEMES’, false); get_header(); ?>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <?php the_date(”,'<h2>’,'</h2>’); ?>

    <div class=”post”>
    <h3 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark”><?php the_title(); ?></h3>
    <div class=”meta”><?php _e(“Filed under:”); ?> <?php the_category(‘,’) ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__(‘Edit This’)); ?></div>

    <div class=”storycontent”>
    <?php the_content(__(‘(more…)’)); ?>
    </div>

    <div class=”feedback”>
    <?php wp_link_pages(); ?>
    <?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
    </div>

    <!–
    <?php trackback_rdf(); ?>
    –>

    </div>

    <?php comments_template(); // Get wp-comments.php template ?>

    <?php endwhile; else: ?>
    <?php _e(‘Sorry, no posts matched your criteria.’); ?>
    <?php endif; ?>

    <?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>

    <?php get_footer(); ?>
    </div></div></td>
    <!— middle column ends here —>

    <!— right column starts here —>
    <td colspan=”20%” bgcolor=”#46201D”>
    <img src=”images/space.gif” width=143 height=80><br>
    <img src=”images/space.gif” height=8><br>
    <img src=”images/space.gif” width=143 height=80><br>
    <img src=”images/space.gif” height=8><br>
    <img src=”images/space.gif” width=143><br>
    <img src=”images/space.gif” height=8><br>
    <img src=”images/space.gif” width=143 height=80><br>
    <img src=”images/space.gif” height=8><br>
    </td>
    <!— right column ends here —>
    </tr>
    </table></center>

    </body>
    </html>

    Thread Starter the-wick

    (@the-wick)

    I pretty much need someone to hold my hand, I am very beginner when it comes to this. I have been scouring my code for several hours, and I just don’t have the knowledge to see what is wrong, and how it needs to be changed. I’m being told that I have two Style sheets, but I’m obviously very confused, and I don’t see where I have two style sheets in the header.php file

    Thread Starter the-wick

    (@the-wick)

    Glo: are you telling me I need to use the WP style sheet on my website instead of the one I wrote? I’m pretty confused. Thanks for the help with the side bar info!!

    Thread Starter the-wick

    (@the-wick)

    no,they exist on the server. The page is tables based, and the background image is the same as on the header of my page. For some reason, the WP sidebars are overriding my tables. I’m very confused.

    Thread Starter the-wick

    (@the-wick)

    I followed the transycan.net tutorial to a T and this is what I got….something is wrong here.

    Thread Starter the-wick

    (@the-wick)

    I have been reading all about ‘the loop’ and php, etc. I’ve read all the tutorials linked in previous posts, and I have no idea what they mean. I have no php authoring experience, and I’m having trouble understanding how exactly yo do this. Can someone explain specifically and simply please?
    Thanks!

    Thread Starter the-wick

    (@the-wick)

    sorry I wasn’t more clear. Word Press is installed on my website’s server. My site is authored in html.

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