Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

CSS Forum


You are currently viewing our CSS Forum as a guest. Please register to participate.
Login



Reply
Old 12-30-2006, 08:06 PM CSS Puzzle #1
KRYPTOR's Avatar
Skilled Talker

Posts: 62
Name: Ray
Location: Illinois
Trades: 0

Whenever you do a textarea script, the box always shows a scrollbar.
Is there a WAY in css or otherwise to eliminate the scrollbar other than coloring everything as below?

<style type="text/css">
textarea {
scrollbar-face-color:#000000;
scrollbar-arrow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-3dlight-color:#000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
background-color:#000000;
}

Thanks!
The KRYPTOR
__________________
"What is SEEN is TEMPORAL, What is UNSEEN is ETERNAL".


Please login or register to view this content. Registration is FREE
KRYPTOR is offline
Reply With Quote
View Public Profile Visit KRYPTOR's homepage!
 
 
Register now for full access!
Old 01-05-2007, 02:26 PM Re: CSS Puzzle #1
Banned

Posts: 905
Name: Travel Agent
Trades: 0
Yes, there is a way ... place the following before the "</head>"...

<style type="text/css">
.input{
width: 400px;
height: 200px;
border:0px solid #88A0C8;
font-family: Tahoma, verdana, arial,sans-serif;
font-size: 11px;
color: #003068;
text-decoration: none;
background-color: #E9EDF0;
overflow: scroll;
overflow-y: scroll;
overflow-x: hidden;
overflow:-moz-scrollbars-vertical;
}
</style>

<style type="text/css">
textarea {
scrollbar-face-color:#000000;
scrollbar-arrow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-3dlight-color:#000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
background-color:#000000;
}
</style>


After "body" ... place this...

<p><textarea class="input">Put whatever text you want here</textarea></p>
travelagent is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to CSS Puzzle #1
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.10449 seconds with 12 queries