03-08-2008, 11:17 PM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Jan 2008
Posts: 136
Thanks: 4
|
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 :)
|
|
|
|