Truth
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Font Color ProblemIn your CSS, find this line
.meta {
font-size: .95em;}add
color: #000;change the hex code to the color hex code you want 🙂
Forum: Themes and Templates
In reply to: IE flashing problem on hoverThanks, check out that site, but couldn’t find the one with my problem.. =(
Forum: Fixing WordPress
In reply to: Blocking Spammers?A google search results in these, might help
http://wordpress.org/support/topic/33789?replies=2
http://wordpress.org/support/topic/20700?replies=10
http://wordpress.org/support/topic/49409?replies=5
http://wordpress.org/support/topic/3404?replies=15
http://wordpress.org/support/topic/15663?replies=43
http://wordpress.org/support/topic/41366?replies=10
http://wordpress.org/support/topic/14324?replies=43Forum: Themes and Templates
In reply to: chanching the way comment are listedhttp://wordpress.org/support/topic/38145?replies=10#post-331645
might help for the comments number too 🙂
// Do not have to worry about the core file when upgrading too because the change is in the themes file..
Forum: Themes and Templates
In reply to: IE flashing problem on hoverHmm.. weird, it happens in my IE6, and yes niziol, that is just what I mean and I can’t manage to figure it out. It is suppose to be a purplish white background when you hover over it and the background stays there as long as the cursor is on it but in my IE6, the background just flashes (like what niziol mentioned)
Forum: Fixing WordPress
In reply to: How to not require email in the comments formIn your admin, options > Discussion
Uncheck the “Comment author must fill out name and e-mail”
I think this is the way 🙂
Forum: Installing WordPress
In reply to: GalleryI would suggest Lazyest gallery, so far I think that’s the easiest to use (at least for me)
Forum: Fixing WordPress
In reply to: Why is it all in bold??I’m using Firefox 1.5.0.1 and I still don’t see the problem =x
Forum: Fixing WordPress
In reply to: Why is it all in bold??Hmm.. I didn’t see the problem you’ve mentioned though, weird.. you mean all the post example:
http://www.machet.com.au/blog/?p=78
? Couldn’t find all the text bold though
I’m using Firefox and IE, and both looks fine to me.
Forum: Fixing WordPress
In reply to: automatic width=”350″ when posting imageRight. Hmm. this is how I do it, I don’t know whether my edit is the same as yours but in quicktags.js
right at the bottom, look for this line
function edInsertImage(myField) {a few lines down, you should see this
myValue = '<img src="'just change it to
myValue = '<img width='350' src="'and see whether it works 🙂
Forum: Plugins
In reply to: Survey plugin that’s free (not just a poll)?I google for it and came across a few results
http://www.webfroot.co.nz/archives/2005/11/24/wp-survey-creator/
http://www.instinct.co.nz/plugins.html
http://www.3g.co.nz/2/?p=11
http://kanslozebagger.org/wbquizForum: Plugins
In reply to: [PLUGIN] Inline Ajax CommentsUpgraded to the latest, working really well. I think it might be good like what you say to only have the show comments links show up if javascript is enable on the user’s browsers. Good luck working on it. 🙂
Forum: Fixing WordPress
In reply to: Reversing the comments numberingForum: Fixing WordPress
In reply to: How do I reverse the comments list?I tried this and it works but I have to change
$count = count($comments);to
<?php $count = count($comments); ?>or put
$count = count($comments);at the top inside the
<?phpand?>for it to work.. thanks 🙂
Forum: Plugins
In reply to: [PLUGIN] Inline Ajax CommentsThanks for taking this suggestion, kashou 🙂
Waiting for 0.3 😉 By the way, is it possible to use the same method you use in ajax-comments.php for the reverse comments and numberings in the theme’s comments.php too?
Thank you. =D