Page 1 of 1

header background

Posted: 24 Apr 2016, 14:46
by rokudamerlin
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

Re: header background

Posted: 24 Apr 2016, 14:49
by mjau-mjau
rokudamerlin wrote:can i use a background (nav +3dlogo) ?
Sorry I don't understand the question. background? yes ... but not sure what that has to do with nav and 3d logo ...

Re: header background

Posted: 24 Apr 2016, 15:32
by rokudamerlin
i want in the blue area a background image http://vektorstyle.de/3.jpg

Re: header background

Posted: 24 Apr 2016, 16:28
by mjau-mjau
rokudamerlin wrote:i want in the blue area a background image http://vektorstyle.de/3.jpg
That is your <header> element. It is not affected by the background plugins ... You can add custom css if you need to.
Code
header.header {
  background: tomato;
}

Re: header background

Posted: 25 Apr 2016, 06:43
by rokudamerlin
run perfect thanks

Re: header background

Posted: 01 May 2016, 17:32
by csabacs
and is it possible to make it transparent color ?
Code
  opacity: 0.4;
    filter: alpha(opacity=40);
doesnt work

thanks

Re: header background

Posted: 02 May 2016, 01:08
by mjau-mjau
csabacs wrote:and is it possible to make it transparent color ?
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:
Code
header.header {
  background: rgba(255, 200, 100, 0.5);
}
The last number "0.5" is the opacity.

Re: header background

Posted: 03 May 2016, 12:53
by csabacs
Thank you mjau-mjau :) It is nice to have such a awesome support here :)