• Resolved tikurion

    (@tikurion)


    First off, as so often: Sorry if I’m double posting. I didn’t find a post concerning this…

    Now, I have a probelm: The WordPress 2.0 Release Candidate worked better for me than the actual WP2.0 final. I have a problem with the boxes when writing an entry, you can see this here: https://web20.server-drome.net/uploads/wp20_randdingen.png (the problem is marked with that black arrow, I mean the blue lines next to the header).

    Now, my question is whether there are changes between the RC and the Final that are grave enough to justify an update. In other words: Does anybody know a solution, or can I use the RC anyways?

    Thanks in advance, oh, and don’t consider this topic to be important, it would just be nice if this could be changed.

Viewing 5 replies - 1 through 5 (of 5 total)
  • very strange. what are there + for? i don’t have them, they are just missing.
    any hints on this?

    tikurion, this seems to be a bug in how the css renders in Firefox. I’ll submit a patch, but you can fix it yourself by finding in wp-admin/wp-admin.css:
    /****************************************************************
    avoid padding, margins or borders on dbx-box,
    to reduce visual discrepancies between it and the clone.
    overall, dbx-box is best left as visually unstyled as possible
    *****************************************************************/
    .dbx-box {
    margin:0;
    padding:0;
    border:none;
    }

    in that file and commenting out margin:0; like so: //margin:0;

    actually, that makes it look okay in Firefox and IE, but not Opera…

    Okay, new solution that works cross-browsers; add in that CSS for the grabit, and don’t comment out anything:
    /****************************************************************
    avoid padding, margins or borders on dbx-box,
    to reduce visual discrepancies between it and the clone.
    overall, dbx-box is best left as visually unstyled as possible
    *****************************************************************/
    .dbx-box {
    margin:0;
    padding:0;
    border:none;
    }

    #grabit {
    width: 188px;
    }

    Here’s the ticket I created at Trac:
    https://trac.www.ads-software.com/ticket/2192

    Thread Starter tikurion

    (@tikurion)

    Jep, that worked, thanks very much! And sorry, that I didn’t give the browser, didn’t think of this ^_~.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Final contra Release Candidate, problem with dragable boxes’ is closed to new replies.