Forum Replies Created

Viewing 15 replies - 46 through 60 (of 217 total)
  • Thread Starter brianbonner

    (@brianbonner)

    I tried that, but nothing seems to happen, how do I get it out of the clipboard?

    Thread Starter brianbonner

    (@brianbonner)

    I mean the presentation tab in the dashboard.

    Thread Starter brianbonner

    (@brianbonner)

    I am confused, I need to put rewrite rules between the IfModule mod_rewrite.c which is surrounded by wordpress. Can I start a second IfModule mod_rewrite.c?

    Forum: Fixing WordPress
    In reply to: Word Wrap in 2.0
    Thread Starter brianbonner

    (@brianbonner)

    Ok, I figured it out, it doesn’t wrap long strings without spaces. I was just holding down the key to check it.

    OK, I finally got it working for me with the following code:

    <?php
    /*
    Plugin Name: Advanced WYSIWYG Editor
    Plugin URI: https://www.labnotes.org/
    Description: Adds more styling options to the WYSIWYG post editor.
    Version: 0.2
    Author: Assaf Arkin
    Author URI: https://labnotes.org/
    License: Creative Commons Attribution-ShareAlike
    Tags: wordpress tinymce
    */

    if (isset($wp_version)) {
    add_filter("mce_plugins", "extended_editor_mce_plugins", 0);
    add_filter("mce_buttons", "extended_editor_mce_buttons", 0);
    add_filter("mce_buttons_2", "extended_editor_mce_buttons_2", 0);
    add_filter("mce_buttons_3", "extended_editor_mce_buttons_3", 0);
    }

    function extended_editor_mce_plugins($plugins) {
    array_push($plugins, "table", "fullscreen", "emotions", "advlink", "advimage", "searchreplace", "iespell");
    return $plugins;
    }

    function extended_editor_mce_buttons($buttons) {
    return array("cut", "copy", "paste", "separator", "undo", "redo", "separator", "search,replace", "separator", "iespell", "charmap", "emotions", "separator", "link", "unlink", "anchor", "image", "separator", "removeformat", "code", "fullscreen", "wordpress", "wphelp");
    }

    function extended_editor_mce_buttons_2($buttons) {
    return array(
    "formatselect", "bold", "italic", "underline", "strikethrough", "sub", "sup", "separator", "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator", "bullist", "numlist", "outdent", "indent", "separator", "forecolor", "backcolor", "separator", "hr");
    return $buttons;
    }

    function extended_editor_mce_buttons_3($buttons) {
    // Add buttons on the third toolbar line
    return $buttons;
    }
    ?>

    I am having the same problem. I am in the same place as terrance.

    Forum: Fixing WordPress
    In reply to: wp_footer
    Thread Starter brianbonner

    (@brianbonner)

    So you are saying it is used by certain plugins?

    Thread Starter brianbonner

    (@brianbonner)

    Moshu,
    You better check that with IE. For IE you need position: relative;

    Thread Starter brianbonner

    (@brianbonner)

    This is the correct code:

    img.right {
    position: relative;
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
    }
    img.left {
    position: relative;
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
    }
    .right {
    float: right;
    }
    .left {
    float: left;
    }

    Thread Starter brianbonner

    (@brianbonner)

    Actually, it din’t work as given:

    .img-shadow {
    clear: both;
    float:left;
    background: url(images/shadowAlpha.png) no-repeat bottom right !important;
    background: url(images/shadow.gif) no-repeat bottom right;
    margin: 20px 0 0 17px !important;
    margin: 20px 0 0 8px;
    }
    .img-shadow img {
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid #a9a9a9;
    margin: -6px 6px 6px -6px;
    padding: 4px;
    }

    Correct code:


    .img-shadow {
    clear: both;
    float: left;
    position: relative;
    background: url(images/shadowAlpha.png) no-repeat bottom right !important;
    background: url(images/shadow.gif) no-repeat bottom right;
    margin: 20px 0 0 17px !important;
    margin: 20px 0 0 8px;
    }
    .img-shadow img {
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid #a9a9a9;
    margin: -6px 6px 6px -6px;
    padding: 4px;
    }

    Thread Starter brianbonner

    (@brianbonner)

    I needed to add

    position: relative;

    to the style sheet. This was left out of the tutorial.

    Thread Starter brianbonner

    (@brianbonner)

    This does work! Thanks!

    I have never heard that one before! But, for those like me that do not know, I am glad I posted it. [comic voice on]Sending a Reverend to view naked young girls, that’s not right…

    Forum: Fixing WordPress
    In reply to: WP Hacked Twice

    I just spoke to the owner of my host, and he said it doesn’t matter if my file premissions are set to 777, no one outiside can write to my files. He mentioned it is a security feature in the php doc?

    I don’t recommend using 777 unless you have some programs that must write to the server like I do, but the defaults your sever setup SHOULD be fine.

    I am glad I left Powweb and Ace-host for tranqual hosting.

    I checked on powweb and it is happening on their servers as well.

    This is Porn

Viewing 15 replies - 46 through 60 (of 217 total)