How to add images to the navigation bar

How to add images to the navigation bar 1.0

No permission to download
Chrome: 3
FF: 3
IE: 1

And now you're off my Xmas card list for making me use IE ;)
 
For some reason my EXTRA.css file wont work. Ive had to add the css code directly into the navigation.css file. Any tips on where I may be going wrong?

Template>>Create New Template

Called it EXTRA.css
Added the code but no joy!

Also the code to get it to display in IE, is that also added to the css file? I tried adding it to navigation.css but it didnt show the image in IE and instead made the search box go mad!
 
Ok im getting there slowly! Turned out the custom style I was using didnt have reference to EXTRA.css in the public.css file.

This is what ive now got in my EXTRA.css file

#navigation .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%;

/* IE8 */
background: url(styles/default/shelley_snow_l.png) no-repeat;

/* Decent browsers */
background: url(styles/default/shelley_snow_l.png) no-repeat 0% 0%,
url(styles/default/shelley_snow_r.png) no-repeat 0% 0%,
url(styles/default/shelley_snow_c.png) no-repeat 0% 0%;

/* IE6, IE7 */
_background: url(styles/default/shelley_snow_l.png) no-repeat;

}

It was showing 3 snow on FF and 0 in IE. I added the extra code (IE8 etc) and since then it shows 1 snow IE and 1 snow FF. I cant quite work out why ive lost 2 on FF?!
 
All sorted! Forgot to put the 50% 0% and 100% 0% in!

Seems to be working fine on IE and FF now!
 
I wasn't willing to sacrifice, so I told users if they wanted to experience the real web and use IE... then upgrade to IE9 beta or suck it up... atleast it is like 98 - 99% web standards compliant.
 
is it possible to use those graphics on XenForo-Beta2 ?

thanks,

I shouldn't see why not. ;)

UPDATE: There was an update made on xenforo.com tonight with regards to the sizing of the images. They were reduced by 5px (height) thus giving you more area in the tabs to hover and select what tabs your wanted to click due to the snow hindering the text.

Simply overwrite the images which you can download via the attachment in this post, and then go to the navigation.css template and make one change to the following. Refer to the first post in this thread for the full instructions.

Find:
Code:
height: 30px;


Replace:
Code:
height: 25px;
 

Attachments

  • shelley_snow_l.webp
    shelley_snow_l.webp
    1.5 KB · Views: 31
  • shelley_snow_c.webp
    shelley_snow_c.webp
    1.1 KB · Views: 31
  • shelley_snow_r.webp
    shelley_snow_r.webp
    1.1 KB · Views: 34
Thanks Shelley.
I've updated the first post with the new graphics and updated instructions.
 
The picture in the first post shows snow without the hat but I do not see the attachment for that one. Did I miss something?
 
The picture in the first post shows snow without the hat but I do not see the attachment for that one. Did I miss something?
The original graphics used, which is what the screenshots show, were different from the ones which are currently in place
 
The original graphics used, which is what the screenshots show, were different from the ones which are currently in place

Will the original one for the right side be made available? The hat is red and the alert is also red so I prefer to get rid of the red hat and keep the alert. ;-)
 
Will the original one for the right side be made available? The hat is red and the alert is also red so I prefer to get rid of the red hat and keep the alert. ;-)
The original one was 30px and the new ones are 25px.
I've attached it to this post but you will need to update the css accordingly.
 

Attachments

  • shelley_snow_r_30px.webp
    shelley_snow_r_30px.webp
    1.2 KB · Views: 25
Top Bottom