Search…

X3 Photo Gallery Support Forums

Search…
 
rokudamerlin
Experienced
Topic Author
Posts: 161
Joined: 01 Dec 2012, 02:00

header background

24 Apr 2016, 14:46

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
VektorStyle.de
Graphic - Web - Printdesign | X3
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: header background

24 Apr 2016, 14:49

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 ...
 
rokudamerlin
Experienced
Topic Author
Posts: 161
Joined: 01 Dec 2012, 02:00

Re: header background

24 Apr 2016, 15:32

i want in the blue area a background image http://vektorstyle.de/3.jpg
VektorStyle.de
Graphic - Web - Printdesign | X3
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: header background

24 Apr 2016, 16:28

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;
}
 
rokudamerlin
Experienced
Topic Author
Posts: 161
Joined: 01 Dec 2012, 02:00

Re: header background

25 Apr 2016, 06:43

run perfect thanks
VektorStyle.de
Graphic - Web - Printdesign | X3
 
csabacs
Posts: 14
Joined: 12 Jun 2012, 18:18

Re: header background

01 May 2016, 17:32

and is it possible to make it transparent color ?
Code
  opacity: 0.4;
    filter: alpha(opacity=40);
doesnt work

thanks
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: header background

02 May 2016, 01:08

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.
 
csabacs
Posts: 14
Joined: 12 Jun 2012, 18:18

Re: header background

03 May 2016, 12:53

Thank you mjau-mjau :) It is nice to have such a awesome support here :)