Bitcoin Forum
June 17, 2024, 06:04:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: paying 5 dollar for a transparent box (HTML)  (Read 561 times)
MovieBTC (OP)
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
March 30, 2016, 05:20:57 PM
Last edit: March 30, 2016, 05:48:08 PM by MovieBTC
 #1

Hello i got this code

<center>
<body>
<textarea name="" id="origin" cols="150" rows="20" onchange="replace()" onkeyup="replace()"></textarea>
<br>
<textarea name="" id="target" cols="150" rows="20"></textarea>
</center>

but i want the boxes to be ''dark'' ''transparent'' how do i do that? and the text with the color ''#00ff00''


paying 1 dollar for the first to post it Cheesy

Code: Hello
killerjoegreece
Legendary
*
Offline Offline

Activity: 1680
Merit: 1010


Professional Native Greek Translator (2000+ done)


View Profile WWW
March 30, 2016, 05:24:22 PM
 #2

<!DOCTYPE html>
<html>
<head>
<style>
div.background {
  background: url(klematis.jpg) repeat;
  border: 2px solid black;
}

div.transbox {
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}

div.transbox p {
  margin: 5%;
  font-weight: bold;
  color: #000000;
}
</style>
</head>
<body>

<div class="background">
  <div class="transbox">
    <p>This is some text that is placed in the transparent box.</p>
  </div>
</div>

</body>
</html>
MovieBTC (OP)
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
March 30, 2016, 05:25:21 PM
 #3

<!DOCTYPE html>
<html>
<head>
<style>
div.background {
  background: url(klematis.jpg) repeat;
  border: 2px solid black;
}

div.transbox {
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}

div.transbox p {
  margin: 5%;
  font-weight: bold;
  color: #000000;
}
</style>
</head>
<body>

<div class="background">
  <div class="transbox">
    <p>This is some text that is placed in the transparent box.</p>
  </div>
</div>

</body>
</html>



that will only give me 1 box.

Code: Hello
killerjoegreece
Legendary
*
Offline Offline

Activity: 1680
Merit: 1010


Professional Native Greek Translator (2000+ done)


View Profile WWW
March 30, 2016, 05:28:51 PM
 #4

<!DOCTYPE html>
<html>
<head>
<style>
div.background {
  background-color: #ffffff;
  border: 2px solid black;
}

div.transbox {
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}

div.transbox p {
  margin: 5%;
  font-weight: bold;
  color: #000000;
}
</style>
</head>
<body>

<div class="background">
  <div class="transbox">
    <p>This is some text that is placed in the transparent box.</p>
  </div>
</div>

</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
div.background {
  background-color: #ffffff;
  border: 2px solid black;
}

div.transbox {
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}

div.transbox p {
  margin: 5%;
  font-weight: bold;
  color: #000000;
}
</style>
</head>
<body>

<div class="background">
  <div class="transbox">
    <p>This is some text that is placed in the transparent box.</p>
  </div>
</div>
SwingFirst
Hero Member
*****
Offline Offline

Activity: 678
Merit: 1000


View Profile
March 30, 2016, 11:14:24 PM
 #5

paying 1 dollar for the first to post it Cheesy

The title says $5 and you say $1
michael23
Full Member
***
Offline Offline

Activity: 560
Merit: 100



View Profile
March 31, 2016, 01:48:05 AM
 #6

just add this style for each of your textarea tag

Code:
style="background:rgba(0,0,0,0.5);color:#00ff00"

full code from what you gave above will be

Code:
<center>
<body>
<textarea style="background:rgba(0,0,0,0.5);color:#00ff00" name="" id="origin" cols="150" rows="20" onchange="replace()" onkeyup="replace()"></textarea>
<br>
<textarea style="background:rgba(0,0,0,0.5);color:#00ff00" name="" id="target" cols="150" rows="20"></textarea>
</center>
YoonYeonghwa
Sr. Member
****
Offline Offline

Activity: 242
Merit: 250


View Profile
March 31, 2016, 02:13:33 AM
 #7

I like how you say $5 in the title and then 1 dollar in the description. Nice way to tease people... So 1 dollar is 0.002?

bL4nkcode
Copper Member
Legendary
*
Offline Offline

Activity: 2142
Merit: 1305


Limited in number. Limitless in potential.


View Profile
March 31, 2016, 04:48:46 AM
 #8

just add this style for each of your textarea tag

Code:
style="background:rgba(0,0,0,0.5);color:#00ff00"

full code from what you gave above will be

Code:
<center>
<body>
<textarea style="background:rgba(0,0,0,0.5);color:#00ff00" name="" id="origin" cols="150" rows="20" onchange="replace()" onkeyup="replace()"></textarea>
<br>
<textarea style="background:rgba(0,0,0,0.5);color:#00ff00" name="" id="target" cols="150" rows="20"></textarea>
</center>
i know this will totally work dude just try it out but i don't think it you will totally pays with
$5 for that service instead you can go google about it.
Edit: Oh and its different amount between in the title and your post. So its only $1? LOL
MovieBTC (OP)
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
April 02, 2016, 05:09:37 PM
 #9

just add this style for each of your textarea tag

Code:
style="background:rgba(0,0,0,0.5);color:#00ff00"

full code from what you gave above will be

Code:
<center>
<body>
<textarea style="background:rgba(0,0,0,0.5);color:#00ff00" name="" id="origin" cols="150" rows="20" onchange="replace()" onkeyup="replace()"></textarea>
<br>
<textarea style="background:rgba(0,0,0,0.5);color:#00ff00" name="" id="target" cols="150" rows="20"></textarea>
</center>

no it's 5 Smiley PM me your adress !

Code: Hello
smashbtc
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
April 02, 2016, 05:26:58 PM
 #10

Here's my code

Code:
<center>
<body>
<textarea style="background-color:#222;color:#00ff00;opacity:0.8" name="" id="origin" cols="150" rows="20" onchange="replace()" onkeyup="replace()"></textarea>
<br>
<textarea style="background-color:#222;color:#00ff00;opacity:0.8" name="" id="target" cols="150" rows="20"></textarea>
</center>

THE ONE STOP SOLUTION FOR THE CRYPTO WORLD
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
Facebook   /  Twitter   /  Reddit   /  Medium   /  Youtube   /
      ▄▄█████████▄▄
   ▄█████████████████▄
  █████▀▀  ███  ▀▀█████
 ████     █████     ████
████     ███████
███▀    ████ ████
███▄   ████   ████
████  ████▄▄▄▄▄████  ████
 ███████████████████████
  █████▄▄       ▄▄█████
   ▀█████████████████▀
      ▀▀█████████▀▀

▄██▀▀▀▀▀▀▀▀▀▀▀▀▀██▄
▄██▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀██▄
▄█▀                       ▀█▄
▄▄▄▄ ▄█                           █▄ ▄▄▄▄
█   ███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███   █
▀▀█▀                                 ▀█▀▀
▄▀                                     ▀▄
▄▄▀▄▄▄▄                                 ▄▄▄▄▀▄▄
█       ▀▀▄                           ▄▀▀       █
█          █                         █          █
█▀▀▄▄▄▄▄▄▄███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███▄▄▄▄▄▄▄▀▀█
▒▀▄       ██▀▀▀▀▀▀▀▀▀▀▀▀█▀█▀▀▀▀▀▀▀▀▀▀▀▀██       ▄▀▒
▒█▀▀▀▀▄▄  █              ▀              █  ▄▄▀▀▀▀█▒
▒█      █ ▀▄                           ▄▀ █      █▒
▒▀▄▀▄▄▄▄▀  █▀▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀▀█  ▀▄▄▄▄▀▄▀▒
▒▒▒▀▄▄▄▄▄ █                             █ ▄▄▄▄▄▀▒▒▒
 ▒▒▒▒▒▒▀▀▀▀▀▄▄▄▄▄▄███████████████▄▄▄▄▄▄▀▀▀▀▒▒▒▒▒▒▒
██
██
██
██
██
██
██
██
██
██
██
██
smashbtc
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
April 02, 2016, 05:30:49 PM
 #11

If you like it, here's my btc address 3NLyzZRyEMmwsASjT88NnYHotkCxkjw4oT

THE ONE STOP SOLUTION FOR THE CRYPTO WORLD
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
Facebook   /  Twitter   /  Reddit   /  Medium   /  Youtube   /
      ▄▄█████████▄▄
   ▄█████████████████▄
  █████▀▀  ███  ▀▀█████
 ████     █████     ████
████     ███████
███▀    ████ ████
███▄   ████   ████
████  ████▄▄▄▄▄████  ████
 ███████████████████████
  █████▄▄       ▄▄█████
   ▀█████████████████▀
      ▀▀█████████▀▀

▄██▀▀▀▀▀▀▀▀▀▀▀▀▀██▄
▄██▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀██▄
▄█▀                       ▀█▄
▄▄▄▄ ▄█                           █▄ ▄▄▄▄
█   ███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███   █
▀▀█▀                                 ▀█▀▀
▄▀                                     ▀▄
▄▄▀▄▄▄▄                                 ▄▄▄▄▀▄▄
█       ▀▀▄                           ▄▀▀       █
█          █                         █          █
█▀▀▄▄▄▄▄▄▄███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███▄▄▄▄▄▄▄▀▀█
▒▀▄       ██▀▀▀▀▀▀▀▀▀▀▀▀█▀█▀▀▀▀▀▀▀▀▀▀▀▀██       ▄▀▒
▒█▀▀▀▀▄▄  █              ▀              █  ▄▄▀▀▀▀█▒
▒█      █ ▀▄                           ▄▀ █      █▒
▒▀▄▀▄▄▄▄▀  █▀▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀▀█  ▀▄▄▄▄▀▄▀▒
▒▒▒▀▄▄▄▄▄ █                             █ ▄▄▄▄▄▀▒▒▒
 ▒▒▒▒▒▒▀▀▀▀▀▄▄▄▄▄▄███████████████▄▄▄▄▄▄▀▀▀▀▒▒▒▒▒▒▒
██
██
██
██
██
██
██
██
██
██
██
██
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!