Log in

View Full Version : Header independent Logo


Fluke667
02-07-2012, 06:15 PM
I want Display a Header Independent Choosable Logo on Left Top.


Thats what i did:

Additional CSS:

div.headlogo {
background:url(images/dark_vb_v2/logo/$bbuserinfo[field17].png);
background-repeat: no-repeat;
width:300px;
height:300px;
padding:0 5px 3px;
position:fixed;
left:10px;
top:0px;
z-index:1;
}


header template:


<if condition="$bbuserinfo[field17]"><div class="headlogo"></div></a></if>



This is not working? Why? Displays Nothing...

kh99
02-07-2012, 06:24 PM
I'm not really an html expert, but wouldn't that just set the background of that <div> (which is empty)? Maybe you want to put an img tag in there instead of making it a background image.