I've created a toobar using a UL and LI's that run accross the screen (display: inline
in each li there is a link (ahref)
I've got on each link a left edge image, middle section rerpeating image and right edge image.
the middle section is set to repeat over x
so it should look like:
--[||||||||]--
I can get it so one backround displays, but not three.
I've read that if you use the background-image with a comma seperate list of files -- you should be able to load multiple backgrounds for that element.
BACKGROUND-IMAGE: url(../interface/TOOLBAR-BTN-UP-MIDDLE.jpg),url(../interface/TOOLBAR-BTN-UP-LEFTEDGE.jpg),url(../interface/TOOLBAR-BTN-UP-RIGHTEDGE.jpg);
the same goes for the repeating and positioning
BACKGROUND-POSITION: center top,left top,right top;
BACKGROUND-REPEAT: repeat-x,no-repeat,no-repeat;
when i do this, nothing works in any browser.
is there another way to handle this? (besides a table)
wbochar
in each li there is a link (ahref)
I've got on each link a left edge image, middle section rerpeating image and right edge image.
the middle section is set to repeat over x
so it should look like:
--[||||||||]--
I can get it so one backround displays, but not three.
I've read that if you use the background-image with a comma seperate list of files -- you should be able to load multiple backgrounds for that element.
BACKGROUND-IMAGE: url(../interface/TOOLBAR-BTN-UP-MIDDLE.jpg),url(../interface/TOOLBAR-BTN-UP-LEFTEDGE.jpg),url(../interface/TOOLBAR-BTN-UP-RIGHTEDGE.jpg);
the same goes for the repeating and positioning
BACKGROUND-POSITION: center top,left top,right top;
BACKGROUND-REPEAT: repeat-x,no-repeat,no-repeat;
when i do this, nothing works in any browser.
is there another way to handle this? (besides a table)
wbochar