Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter zh2908

    (@zh2908)

    vkaryl. that website is pretty good so far! i guess that is the guide i’ve been looking for! thanks!

    Thread Starter zh2908

    (@zh2908)

    opps, so sorry for pasting the long codes. i’ll try when i hav access to the site. thanks so much!

    Thread Starter zh2908

    (@zh2908)

    hm, i’ve got the complete Loop. will the following work then? saved as index.php also.

    <?php
    require(‘./blog/wp-blog-header.php’);
    ?>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
    </head>

    <body>
    <table width=”88%” height=”388″ border=”1″>
    <tr bgcolor=”#CC0000″>
    <td height=”123″ colspan=”2″>banner here</td>
    </tr>
    <tr bgcolor=”#660000″>
    <td height=”23″ colspan=”2″><font color=”#FFFFFF”>links here</font></td>
    </tr>
    <tr>
    <td width=”24%” height=”207″ bgcolor=”#CC0000″>left panel here</td>
    <td width=”76%”><?php if (have_posts()) : while (have_posts()) : the_post(); ?>

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

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h3 class=”storytitle”>” 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>

    </div>

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

    <?php endwhile; else: ?>
    <?php _e(‘Sorry, no posts matched your criteria.’); ?>
    <?php endif; ?> </td>
    </tr>
    <tr>
    <td height=”23″ colspan=”2″> </td>
    </tr>
    </table>

    </body>
    </html>

    Thread Starter zh2908

    (@zh2908)

    oh, that was just a test page. i need to do something like what you have on http://www.transycan.net/blogtest/

    meaning, a flash banner on the top, followed by a row of links, then a left nav bar instead of a right, content will be on the right, then a footer.

    Thread Starter zh2908

    (@zh2908)

    i did a testing page. saved the following as index.php
    will the following work?

    <?php
    require(‘./blog/wp-blog-header.php’);
    ?>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
    </head>

    <body>
    <table width=”88%” height=”388″ border=”1″>
    <tr bgcolor=”#CC0000″>
    <td height=”123″ colspan=”2″>banner here</td>
    </tr>
    <tr bgcolor=”#660000″>
    <td height=”23″ colspan=”2″><font color=”#FFFFFF”>links here</font></td>
    </tr>
    <tr>
    <td width=”24%” height=”207″ bgcolor=”#CC0000″>left panel here</td>
    <td width=”76%”><?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php endwhile; else: ?>
    <?php _e(‘Sorry, no posts matched your criteria.’); ?>
    <?php endif; ?> </td>
    </tr>
    <tr>
    <td height=”23″ colspan=”2″> </td>
    </tr>
    </table>

    </body>
    </html>

    Thread Starter zh2908

    (@zh2908)

    oh, i cant pick a theme from the site because i’m doing a site for an event. so the design hav to be one of its own.

    Thread Starter zh2908

    (@zh2908)

    oh ok, if thats the case, what do i have to save my file as? is it possible everything can be done in 1 file? or there is a need for multiple files like a file for the header, a file for the footer, etc. can everything be combined into 1 instead? if so, what should i save the file as? does it matter? or i can just save the single file as maybe index.php?

    Thread Starter zh2908

    (@zh2908)

    erm, i’ve actually done the mockup in simple HTML already. how do i convert to a WordPress theme then? sorry, really no idea how to figure that out. tried to look at the link you provided a few hours ago, but found nothing specific enough for me.

    my understanding as of now is i can only edit the codes. which i seriously doubt is the only option. so perhaps you can teach me how i can actually convert to the WordPress Theme? is there a software that generates that or wat?

    erm, sorry, but i dont know how to private message you. could you explain to me what you mean by making a mockup that way? i have the design in .htm format. but i have no idea how to integrate it with wordpress. my topic is also up, you might wanna reply there? need ur help… thanks!

    sorry for that. created one my own already.

    hi, i’m new to wordpress, is there anyway i can design my template using design view in dreamweaver or something? instead of editing codes in code view only?

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