kurakin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: transparant scrollbarTransparent standard scroll bars? No.
But you may be able to use flash/javascript/vbscript ones. I’ve seen those around on various sites. Basically a button that when you click it, it causes the page to scroll…Forum: Fixing WordPress
In reply to: help with some CSS problemyou can get rid of the
href="#"part at least, they’ll only be anchors then, though still using the a tag. If you apply aclass="bar"and define it as#header .bar {color: #000;}then that should give you what you want. Without playing with it I’m not sure why it would do what you are describing, but try that out.Forum: Plugins
In reply to: Hack: only registered users can post commentsMade some small changes so that the comment form isn’t even shown unless the user is logged in. After the line:
<?php if ('open' == $post->comment_status) { ?>
add:
<?php if (isset ($message)) {
######### comments hack by Jamison & Michael
echo $message; // display message if they're not logged in
}
else {
?>
and change the line
<?php } else { // comments are closed ?>
to be
<?php }} else { // comments are closed ?>
Then they can’t even use any little tricks to bypass the disabled form stuff. (I have a plugin for firefox that will do exactly that, and it wouldn’t be hard to remove them with a regex in a spam script)