• Hi.. i am using the wonderful theme Vina – on WordPress 2.7

    How can I make the Page Comment:

    1) to appear at end of page, and
    2) make comment area wider, and
    3) move the box for typing in new comment to appear at top of page

    Thanks so much. I am a newbie to wordpress, so hope yuo can help me

    My page in question is:

    http://www.rickerchoi.com/?page_id=12

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter doowlehc

    (@doowlehc)

    o sorry and 4) how to make the last comment show as first

    Thanks!

    1) & 2) :
    change in framework.css

    .dp60
    {
    	width: 100%;
    	float: left;
    	display: inline;
    	margin-right: -1px;
    }

    and

    .dp40
    {
    	width: 100%;
    	display: inline;
    	margin-right: -1px;
    }

    3) move the #respond div to the top of .dp40

    4) change
    <?php foreach ($comments as $comment) : ?>
    to
    <?php $comments = array_reverse($comments, true); ?>
    in your comment.php template
    that is the easiest solution IMHO, but there are many, search this forum and you will find a lot of different hacks for that

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page Comment at end of page, not on side… and make it wider’ is closed to new replies.