Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to let the rectangle around scrollbar text disappear?

Status
Not open for further replies.

kippie

Technical User
Nov 8, 2001
158
In the HTML below I would like to let the shadow border around the textblock disappear so that the whole background will be white. Is that possible?

This is the HTML:
<html>

<head>
<meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=iso-8859-1&quot;>
<meta name=&quot;generator&quot; content=&quot;Adobe GoLive 4&quot;>
<style><!--
textarea.combi { scrollbar-arrow-color: lightSalmon;; scrollbar-face-color: bisque;; scrollbar-highlight-color: ivory;; scrollbar-shadow-color: mistyrose;; }

-->
</style>
</head>

<body>
<textarea class=&quot;combi&quot; cols=&quot;40&quot; rows=&quot;5&quot;>The scroll bar for
Is it possible to let the dark rectangle around the text disappear? Is it possible to let the dark rectangle around the text disappear? Is it possible to let the dark rectangle around the text disappear? Is it possible to let the dark rectangle around the text disappear? </textarea>
</body>

</html>

Kippie

 
Try this:

<html>

<head>
<meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=iso-8859-1&quot;>
<meta name=&quot;generator&quot; content=&quot;Adobe GoLive 4&quot;>
<style><!--
textarea.combi { scrollbar-arrow-color: lightSalmon;; scrollbar-face-color: bisque;; scrollbar-highlight-color: ivory;; scrollbar-shadow-color: mistyrose; border:1 solid white;}

-->
</style>
</head>

<body>
<textarea class=&quot;combi&quot; cols=&quot;40&quot; rows=&quot;5&quot;>The scroll bar for
Is it possible to let the dark rectangle around the text disappear? Is it possible to let the dark rectangle around the text disappear? Is it possible to let the dark rectangle around the text disappear? Is it possible to let the dark rectangle around the text disappear? </textarea>
</body>

</html>

Rick -----------------------------------------------------------
RISTMO Designs
Arab Church
 
Great Rick, Thanks. One more question: I can't figure out how I can use different classes of text within the text block of the scrollbar. I tried the following but that doesn't work:

<html>
<head>
<meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=iso-8859-1&quot;>
<meta name=&quot;generator&quot; content=&quot;Adobe GoLive 4&quot;>
<style><!--
textarea.combi { scrollbar-arrow-color: lightSalmon;; scrollbar-face-color: bisque;; scrollbar-highlight-color: ivory;; scrollbar-shadow-color: mistyrose; border:1 solid white;}
.text { color: #191970; font-size: 10pt; font-family: Arial; text-align: justify }
.textlarge { color: #191970; font-size: 12pt; font-family: Arial; text-align: justify }
-->
</style>

</head>
<body>
<textarea class=&quot;combi&quot; cols=&quot;40&quot; rows=&quot;5&quot;>
<div class=&quot;textlarge&quot;>How to make this in textlarge</div> and this in text?
Is it possible to let the dark rectangle around the text disappear?
Is it possible to let the dark rectangle around the text disappear?
Is it possible to let the dark rectangle around the text disappear? </textarea>
</body>
</html>

Kippie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top