Forums

Need Urgent Help (5 posts)

  1. mesagi
    Member
    Posted 2 years ago #

    I need to make clone of this website http://www.creative-pakistan.com/cp%2Dhome/

    Can anyone guide me to do the same as the above site owner did (I dont understand from where I should start and which option he used to create website directory etc)?

    Thanks in advance

  2. Obvious
    Member
    Posted 2 years ago #

    Why not ask the owner of the site directly?

  3. pizdin_dim
    Member
    Posted 2 years ago #

    "I need to make clone of this website"

    Why would you want to do that?

  4. Obvious
    Member
    Posted 2 years ago #

    This issue doesn't seem so urgent anymore, eh?

  5. Ajd777
    Member
    Posted 2 years ago #

    The directory is just normal posts themed a certain way.
    To get you started to have the posts in two columns: (Of Course you need to apply widths to the tables and ensure you have an even number of posts displayed)

    Before the loop add:

    <table>

    Inside Loop add:

    `

    <?php

    if($x == 0){

    echo '<tr><td>';

    ?>

    Add Content of loop here

    <?php

    echo '</td>';

    $x =1;

    }else{

    echo '<td>';

    ?>

    Add Content of loop here

    <?php

    echo '</td></tr>';

    $x = 0;

    }

    ?>

    '

    After Loop add

    '

    </table>'

Topic Closed

This topic has been closed to new replies.

About this Topic