Viewing 5 replies - 1 through 5 (of 5 total)
  • I believe something in your theme’s CSS collides with WP-dTree. I don’t know enough CSS to say this with any certainty, but it’s probably something to do with images, so fiddle around with those parts of your style sheets.

    Please let us know if you’re able to fix it. Hopefully it can be avoided in future releases of WP-dTree.

    OK, I think I got it. Take a look at your style.css, under /* typography */

    This line kills the tree for you;
    img {float: left; margin: 0 12px 12px 0;}

    You might fix it if you add this to style.php (WP-dTree plugin folder):

    #dtreearc img {float: none; margin: 0 0px 0px 0;}

    Let us know.

    Thread Starter lucadentella

    (@lucadentella)

    You’re right!
    I found this entry in my CSS:

    img {float: left; margin: 0 12px 12px 0;}

    removed and it’s ok, even if now I have to fix images in posts…
    a related question: is there a way to hide root?

    THANKS!

    I believed I had removed the root completely. Guess I was wrong. ??

    You can alter dtree.php if you feel like doing some javascript hacking yourself. I’m adding it to my TODO for the next release anyhow.

    The new release is up now. No more root node.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Layout problem’ is closed to new replies.