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
Obvious
Member
Posted 2 years ago #
Why not ask the owner of the site directly?
pizdin_dim
Member
Posted 2 years ago #
"I need to make clone of this website"
Why would you want to do that?
Obvious
Member
Posted 2 years ago #
This issue doesn't seem so urgent anymore, eh?
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>'