Title: [Plugin: WP-dTree] Text Wrap
Last modified: August 19, 2016

---

# [Plugin: WP-dTree] Text Wrap

 *  [oque](https://wordpress.org/support/users/oque/)
 * (@oque)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/)
 * HI – just checking to see if any type of text wrap was in the works. The menu
   works great but my 2nd column is only 200px wide and about half of each article
   title gets truncated.
 * Thanks,
    David

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

 *  Thread Starter [oque](https://wordpress.org/support/users/oque/)
 * (@oque)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545470)
 * Hey – following up to see if there’s a workaround or any plans in the works to
   include this feature.
 * Thanks
 *  [ulfben](https://wordpress.org/support/users/ulfben/)
 * (@ulfben)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545495)
 * Try [WP-dTree 4.0](http://wordpress.org/extend/plugins/wp-dtree-30/) and delete
   the white-space:nowrap; line from its css.
 *  Thread Starter [oque](https://wordpress.org/support/users/oque/)
 * (@oque)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545496)
 * HI ulfben and thanks. That definitely helped. Not being too versed in css, is
   there any way to adjust the list margins so the wrapping line is aligned with
   the top line? I tried your option for disabling WP-dTree’s css and working from
   my Thesis css but I couldn’t find where that list element is controlled.
 * David
 *  [ulfben](https://wordpress.org/support/users/ulfben/)
 * (@ulfben)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545497)
 * Try using the Chrome browser and its “Inspect element”-feature. It allows you
   to click any element of a page, to see and adjust all it’s properties (incl. 
   CSS).
 * Keep us posted.
 *  Thread Starter [oque](https://wordpress.org/support/users/oque/)
 * (@oque)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545500)
 * I have the plugin and it works really well! Can you tell me what I should look
   for that will control the list wrap for your plugin?
 * Thanks,
    David
 *  [hafman](https://wordpress.org/support/users/hafman/)
 * (@hafman)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545502)
 * I have the same problem, longer page titles are wrapping back across the tree,
   which looks a bit like this:
 *  +— the link thats too long
    and has to wrap
 * Which isn’t too tidy to my eyes. Tried the css removal to no avail. Tried the
   kitchen sink too….!?!?!?!?!? Help!
 *  [hafman](https://wordpress.org/support/users/hafman/)
 * (@hafman)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545503)
 * display: inline-block; fixed it for me
 * see this page
 * [http://robertnyman.com/2010/02/24/css-display-inline-block-why-it-rocks-and-why-it-sucks/](http://robertnyman.com/2010/02/24/css-display-inline-block-why-it-rocks-and-why-it-sucks/)
 * Not so compliant in ancient versions of IE but what is?
 *  [msdeadlines](https://wordpress.org/support/users/msdeadlines/)
 * (@msdeadlines)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545510)
 * hafman [or anyone :] any chance you could provide specific use of display: inline-
   block; … i haven’t been able to get the long titles to wrap within the list width.
 * help would be most fully appreciated 🙂
 *  [ulfben](https://wordpress.org/support/users/ulfben/)
 * (@ulfben)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545512)
 * msdeadlines, it seems in your theme all you have to do is disable WP-dTree’s 
   default stylesheet. Do it from Settings -> WP-dTree
 * If you want to edit the styling further, [read the documentation](http://wordpress.org/extend/plugins/wp-dtree-30/faq/).
 *  [msdeadlines](https://wordpress.org/support/users/msdeadlines/)
 * (@msdeadlines)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545514)
 * hi ulf
 * thanks so much for your response. yes i have disabled WP-dTree’s default stylesheet
   and am working with the theme stylesheet. however my css knowledge is not to 
   the point where i’ve been able to troubleshoot the category title line wrap issue
   🙁
 * any additional help would be appreciated … or a link to a WordPress/WP-dTree 
   site where the category title line wrap is implemented so i could take a look
   at the effective css would also be great :]
 * ta for now
 * — joyce
 *  [hafman](https://wordpress.org/support/users/hafman/)
 * (@hafman)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545515)
 * hello Joyce,
    The css rules i used are:
 *     ```
       .node {
       	display: inline-block;
       	vertical-align: top;
       	max-width: 250px;
       	min-height: 20px;
       	padding-bottom: 10px;
       	/* For IE 7 */
       	*zoom: 1;
       	*display: inline;
       }
       ```
   
 * There is supposed to be a hack for IE 7 but i’m not sure it works. I don’t have
   a copy of that browser available. I left in just in case. Hope that helps.
 * – Nick
 *  [msdeadlines](https://wordpress.org/support/users/msdeadlines/)
 * (@msdeadlines)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545516)
 * rockin! thanks nick 🙂
 * yes seems to work with IE 7 too, using [Adobe BrowserLab](https://browserlab.adobe.com)
   to verify.
 * thanks much!
 * — joyce

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

The topic ‘[Plugin: WP-dTree] Text Wrap’ is closed to new replies.

## Tags

 * [WP-dTree 3.0](https://wordpress.org/support/topic-tag/wp-dtree-3-0/)
 * [WP-dTree 4.0](https://wordpress.org/support/topic-tag/wp-dtree-4-0/)

 * 12 replies
 * 4 participants
 * Last reply from: [msdeadlines](https://wordpress.org/support/users/msdeadlines/)
 * Last activity: [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-dtree-text-wrap-1/#post-1545516)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
