How to add images to the navigation bar

How to add images to the navigation bar 1.0

No permission to download
And to clarify that comment... ;)

You'll need to do something like this in order to allow multiple background images to work in browsers that support it, without IE lunching itself:

Code:
/* IE8 */
background: url('snow_l.png') top left no-repeat;

/* Decent browsers */
background: url('snow_l.png') top left no-repeat,
	url('snow_r.png') top right no-repeat,
	url('snow_c.png') top center no-repeat;

/* IE6, IE7 */
_background: url('snow_l.png') top left no-repeat;
How exactly do I edit it or put it because alot ofmy users use IE.
 
Thanks Brogan, Kier & Shelley, awesome work, very professional.

(It would be even better if the clickable area of the buttons could be expanded over the snow image, but this is probably not possible).
 
Thanks Brogan, Kier & Shelley, awesome work, very professional.

(It would be even better if the clickable area of the buttons could be expanded over the snow image, but this is probably not possible).

Well, I changed the tab heigth and it works good :)
 
Looks like I'm victim somehow to my custom template. Made all the changes (which don't seem that drastic) and I'm not seeing any snow in Safari.
 
What 3 things?

You only add one of those blocks of code depending on whether you want an image on the left, left and right or all 3 images.

Got it working, was because I had no EXTRA.css

I think the middle and right image aren't much of a problem, but the left one is maybe a bit too much. With a little tweak, it should be perfect:)
If you find it, tell me ;)
 
I actually meant making the snow smaller so more of the button is visible. But making the buttons larger can work if you don't mind having larger buttons.

BTW what's that hat doing in the snow on hlxbans.net :D

I don't mind ;)

And shelley created that, I thought plain snow isn't that cool :D So I asked her to added a hat. If you want it, say me.
 
I can't even run XF yet ATM (on a live site) :(

Adding stuff to the snow in the header is something we do every year actually, like a christmas tree and snowman :)
 
Thanks. I use Social theme, the helper class code should put on navigation.css instead of EXTRA.css, without "#navigation".

Code:
 .helper {
background: url(styles/default/shelley_snow_l.png) no-repeat 0% 0%, url(styles/default/shelley_snow_c.png) no-repeat 50% 0%, url(styles/default/shelley_snow_r.png) no-repeat 100% 0%;
display: block;
height: 30px;
left: -5px;
padding: 0px 5px;
position: absolute;
top: -16px;
width: 100%;
}
 
I think the middle and right image aren't much of a problem, but the left one is maybe a bit too much. With a little tweak, it should be perfect:)

I'll see about re-creating the snow layer on the left by reducing the botton of the layer so that it doesn't overlap the text on the navbar.

I don't mind ;)

And shelley created that, I thought plain snow isn't that cool :D So I asked her to added a hat. If you want it, say me.

When you PC me yesterday I thought you meant a bowlers hat or top hat never occurred to me you meant a santas hat even though you made it clear "christmas hat". I actually have one I designed for my christmas style in 2009 though it's tilted the other way that you requested. If it doesn't entail to much work with the blending modes I'll tilt it to the right and post the right snow layer with santas hat in this thread.

That said, The santas hat may exceed the 30px height of the snow layer which will cause me problems in itself. I'll see what I can do and post back hopefully with the right snow layer with the santas hat.
 
Back
Top Bottom