Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Plugins
    In reply to: Log-in sidebar plugin

    open and edit your sidebar.php at your themes used

    and copy this script where you want …. i use this at 1,5 to 2.0.1 and it working

    <! — login via sidebar !>

    <?php
    global $user_ID, $user_identity;
    get_currentuserinfo();
    if (!$user_ID):
    ?>
    <h3><?php _e(‘Login User’); ?></h3><br>
    <form name=”loginform” id=”loginform” action=”<?php echo get_settings(‘siteurl’); ?>/wp-login.php” method=”post”>
    <div><label><?php _e(‘Username’) ?>:
    <input type=”text” name=”log” id=”log” value=”” size=”20″ tabindex=”1″ /></label>
    <label><?php _e(‘Password’) ?>:
    <input type=”password” name=”pwd” id=”pwd” value=”” size=”20″ tabindex=”2″ /></label>
    <input type=”submit” name=”submit” value=”<?php _e(‘Login Me!’); ?> »” tabindex=”3″ />
    <?php wp_register(”, ”); ?>
    <input type=”hidden” name=”redirect_to” value=”<?php echo $_SERVER[‘REQUEST_URI’]; ?>”></div>
    </form>
    <?php
    else:
    ?>
    <h2><?php echo $user_identity; ?></h2>

    <?php
    endif;
    ?>
    <!– – close login——- !>

    Forum: Fixing WordPress
    In reply to: scroll bar CSS

    i use like this at header.php

    <style type=”text/css” media=”screen”>

    /* BEGIN IMAGE CSS */
    /* To accomodate differing install paths of WordPress, images are referred only here,
    and not in the wp-layout.css file. If you prefer to use only CSS for colors and what
    not, then go right ahead and delete the following lines, and the image files. */
    html {
    scrollbar-base-color: default;
    scrollbar-face-color: #F0F3F5;
    scrollbar-track-color: white;
    scrollbar-arrow-color: #1BB2EA;
    scrollbar-3dlight-color: #F0F3F5;
    scrollbar-darkshadow-color: White;
    scrollbar-highlight-color: #F0F3F5;
    scrollbar-shadow-color: #1BB2EA;}

    Forum: Fixing WordPress
    In reply to: Back ground

    i use like this at header.php

    <style type=”text/css” media=”screen”>

    /* BEGIN IMAGE CSS */
    /* To accomodate differing install paths of WordPress, images are referred only here,
    and not in the wp-layout.css file. If you prefer to use only CSS for colors and what
    not, then go right ahead and delete the following lines, and the image files. */
    html {
    scrollbar-base-color: default;
    scrollbar-face-color: #F0F3F5;
    scrollbar-track-color: white;
    scrollbar-arrow-color: #1BB2EA;
    scrollbar-3dlight-color: #F0F3F5;
    scrollbar-darkshadow-color: White;
    scrollbar-highlight-color: #F0F3F5;
    scrollbar-shadow-color: #1BB2EA;}

    and work

    i need too

    Thread Starter hendraadih

    (@hendraadih)

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