MyBB Community Forums

Full Version: Theme Background Image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Looks a lot better now! But how can I make it more visible? A lot of it is hard to see.
(2012-09-10, 08:39 PM)Cltcam Wrote: [ -> ]Looks a lot better now! But how can I make it more visible? A lot of it is hard to see.

Make more elements transparent by changing their background to the transparent PNG or use RGBA color code, as Effone suggested.
(2012-09-10, 11:00 PM)Scois0n Wrote: [ -> ]
(2012-09-10, 08:39 PM)Cltcam Wrote: [ -> ]Looks a lot better now! But how can I make it more visible? A lot of it is hard to see.

Make more elements transparent by changing their background to the transparent PNG or use RGBA color code, as Effone suggested.
So change background for #content to this?

 background: rgba(255, 255, 255, .5);url(http://puu.sh/13vR3) top no-repeat;
(2012-09-10, 11:03 PM)Cltcam Wrote: [ -> ]
(2012-09-10, 11:00 PM)Scois0n Wrote: [ -> ]
(2012-09-10, 08:39 PM)Cltcam Wrote: [ -> ]Looks a lot better now! But how can I make it more visible? A lot of it is hard to see.

Make more elements transparent by changing their background to the transparent PNG or use RGBA color code, as Effone suggested.
So change background for #content to this?

 background: rgba(255, 255, 255, .5);url(http://puu.sh/13vR3) top no-repeat;

no. why would you do that Huh

Change something like

.tcat {
background: #DCDBDC url(../../../images/1/tcat.png) repeat-x;
color: black;
border-top: 1px solid white;
border-bottom: 1px solid #BBB;
padding: 6px;
font-size: 12px;
}

to

.tcat {
background: rgba(255, 255, 255, .5);
color: black;
border-top: 1px solid white;
border-bottom: 1px solid #BBB;
padding: 6px;
font-size: 12px;
}
(2012-09-10, 11:58 PM)Scois0n Wrote: [ -> ]
(2012-09-10, 11:03 PM)Cltcam Wrote: [ -> ]
(2012-09-10, 11:00 PM)Scois0n Wrote: [ -> ]
(2012-09-10, 08:39 PM)Cltcam Wrote: [ -> ]Looks a lot better now! But how can I make it more visible? A lot of it is hard to see.

Make more elements transparent by changing their background to the transparent PNG or use RGBA color code, as Effone suggested.
So change background for #content to this?

 background: rgba(255, 255, 255, .5);url(http://puu.sh/13vR3) top no-repeat;

no. why would you do that Huh

Change something like

.tcat {
background: #DCDBDC url(../../../images/1/tcat.png) repeat-x;
color: black;
border-top: 1px solid white;
border-bottom: 1px solid #BBB;
padding: 6px;
font-size: 12px;
}

to

.tcat {
background: rgba(255, 255, 255, .5);
color: black;
border-top: 1px solid white;
border-bottom: 1px solid #BBB;
padding: 6px;
font-size: 12px;
}

Changed to
.tcat {

background: rgba(255, 255, 255, .5);
color: black;
border-top: 1px solid white;
border-bottom: 1px solid #BBB;
padding: 6px;
font-size: 12px;

}


It's a little hard to see the background image @ http://www.ntngaming.net/mybb/portal.php

Any way to make it better there?
Pages: 1 2 3