MyBB Community Forums

Full Version: Help me for transparent background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to make my background to be transparent?
im trying using this https://community.mybb.com/thread-122509.html
but when i put this code
background: #fff;
opacity: .70;
-khtml-opacity: .70;
-moz-opacity: .70;
it be transparent but in the same time to it be white
i want as this forum
http://lgk-clan.com/
http://u4e-clan.com/forums/index.php

someone help
(2016-10-15, 02:41 AM)AdamDanish Wrote: [ -> ]How to make my background to be transparent?
im trying using this https://community.mybb.com/thread-122509.html
but when i put this code
background: #fff;
opacity: .70;
-khtml-opacity: .70;
-moz-opacity: .70;
it be transparent but in the same time to it be white
i want as this forum
http://lgk-clan.com/
http://u4e-clan.com/forums/index.php

someone help

Remove the background color
Quote: background: #fff;
add your image:
for example....
.container {
background: url('images/your-bg-image.png') top left repeat;
opacity:.70; /** adjust to your desired transparency  **/
}

.content {
background: url('images/your-bg-image.png') top left repeat;
opacity:.70; /** adjust to your desired transparency  **/
}