View Single Post
Old 03-08-2008, 11:17 PM   #2 (permalink)
Gareth
The Acquainted
 
Gareth's Avatar
 
Join Date: Jan 2008
Posts: 136
Thanks: 4
Gareth is on a distinguished road
Default

You can target the textareas directly by adding a class, or indirectly by referring to all text areas in the content div or by all textareas and reset their padding.

Code:
#content textarea {
padding: 0;
}

OR

textarea {
padding: 0;
}
OR

Code:
<style type="text/css">
.example {
padding: 0;
}
</style>

<textarea class="example" rows="10" cols="10">example text</textarea>
Hope this helps :)
Gareth is offline  
Reply With Quote
The Following User Says Thank You to Gareth For This Useful Post:
Alan @ CIT (03-08-2008)