views:

28

answers:

1

Hi everyone!

I'm having a few issues with the jQuery UI Resize loosing the border on the textarea I'm resizing (see images). Can you help?

Borders showing as intended:
borders showing as intended

Right border hidden:
border missing

Firebug screenshot: (http://i.imgur.com/TyR43.png)
Firebug screenshot

+1  A: 

The textarea must be in a container that has overflow set to hidden. Use Firebug to inspect the style of the parent elements. That's all that can be said without seeing the CSS.

Reinis I.
The textarea already has a container with overflow set to hidden. I've added a screenshot of firebug.
Shaun
I'm sorry, I was unclear. The `overflow` property is causing your problem. The overflowing parts of the textarea are being hidden.
Reinis I.