Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Transparent 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…

    you can get rid of the href="#" part at least, they’ll only be anchors then, though still using the a tag. If you apply a class="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.

    Made 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)

Viewing 3 replies - 1 through 3 (of 3 total)