The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
Hiya...
I just want to know how in Main CSS can turn a color in a 10% transparency, since just typing 'transparent' makes disappear the color or border, I just want to low the transparency to 10% or something... Can you help a brother in problem? ![]() --------------- Added [DATE]1232414666[/DATE] at [TIME]1232414666[/TIME] --------------- well so far I have this code, but lowers the opacity of the whole site, and I just want to lower the one for the background ![]() Quote:
|
|
#2
|
|||
|
|||
|
Keep in mind that the opacity command is not the same for all browsers.
|
|
#3
|
||||
|
||||
|
|
|
#4
|
||||
|
||||
|
But I did place it on the right spot and nothing... a more exact line of code? someone?
|
|
#5
|
|||
|
|||
|
Quote:
![]() Code:
.transparent_class {
filter:alpha(opacity=10);
-moz-opacity:0.1;
-khtml-opacity: 0.1;
opacity: 0.1;
}
Quote:
You could try and use RGBA color values. Code:
selector {background: rgba(0,0,255,0.5) } /* semi transparent blue */
|
|
#6
|
||||
|
||||
|
Though task!
I have tried many methods and it doesn't seems to work... Mmmh
|
|
#7
|
|||
|
|||
|
How about this..
Code:
<html>
<head>
<style type="text/css">
div.background
{
width: 500px;
height: 1000px;
background: url(klematis.jpg) repeat;
border: 2px solid black;
/* This will make the background image opacity =60*/
filter:alpha(opacity=60);
/* CSS3 standard */
opacity:0.6;
}
div.transbox
{
width: 400px;
height: 180px;
margin: 30px 50px;
background-color: #ffffff;
border: 1px solid black;
/* Edit the above for the forum/Fluid or fixed width*/
}
div.transbox p
{
margin: 30px 40px;
font-weight: bold;
color: #000000;
}
</style>
</head><body><div class="background">
<div class="transbox">
Forum code goes here ???
</div>
</div></body>
</html>
ALWAYS, make a backup first :up: |
|
#8
|
||||
|
||||
|
Must be there:
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|