hey,
can i use a background (nav +3dlogo) ?
i have test it via ccs and html but i have it not see =(
have you a idea or the class for me ?
greez
X3 Photo Gallery Support Forums
Sorry I don't understand the question. background? yes ... but not sure what that has to do with nav and 3d logo ...rokudamerlin wrote:can i use a background (nav +3dlogo) ?
That is your <header> element. It is not affected by the background plugins ... You can add custom css if you need to.rokudamerlin wrote:i want in the blue area a background image http://vektorstyle.de/3.jpg
header.header {
background: tomato;
} opacity: 0.4;
filter: alpha(opacity=40);Setting "opacity: 0.4" will change opacity for the entire element, including the menu and logo. If you just want to set opacity for the color, you need to use rgba format:csabacs wrote:and is it possible to make it transparent color ?
header.header {
background: rgba(255, 200, 100, 0.5);
}