I tried that but it gives me an ugly 1 comment on the side of my title. I want it to kinda look like binarybonsai and some of the other sites who have it.
then style the number using css
Yes, can you give me an example. Im a css newb. I’ve used tables all my life! LOL. Seriously, Im terrible at this. It also displays 1 comment. not just 1 . How do i remove the word comment?
go to the page suggested and read how to use the function….
<?php comments_number('no responses','one response','% responses');Â ?>
thus if you want just the number you would input it like so:
<?php comments_number('0','1','%');Â ?>
amory, you have a clean blog btw.
If you are talking about having a Popup Comment link in the header next to the title, you will need to create another “Loop”. Check out the CODEX on how to create “The Loop” and put the popup comment link commend in the loop.
Then at the end of the loop, insert a “Rewind Loop” to make the whole page works. (again, details are in CODEX.)
no. im not talking about the pop-up. On Binary Bonsai their is this nice grey number at the right of each title that links you to the comments. Im tryn to figure out how to style it and place it where it belongs.
Thanks for the comments. I didn’t mean to sound harsh, bad morning…
And if you just don’t like the default space created by P tags, you can add this to your CSS stylesheet:
p {
margin-top: 0;
}
Or maybe you already knew that.