A Tutorial For This Menu?
04-03-2008, 02:36 PM
|
A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
Hi, would anyone know where I can find a tutorial for this type off menu?
Cheers
__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-03-2008, 02:42 PM
|
Re: A Tutorial For This Menu?
|
Posts: 6,065
Location: Tennessee
|
If you view Stu's code you should be able to see how it's done. 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|
|
|
|
04-03-2008, 02:46 PM
|
Re: A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
Picking it apart now....
*its going to be a long night...!*

__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-03-2008, 06:22 PM
|
Re: A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
Cool! finished it!
Here it is!
any errors in the code, feel free to let me know!
__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-03-2008, 08:17 PM
|
Re: A Tutorial For This Menu?
|
Posts: 6,065
Location: Tennessee
|
Looks good Darren, good job !
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|
|
|
|
04-04-2008, 08:11 AM
|
Re: A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
Hold That Thought....
Messes up the "people" section in IE6 !
__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-04-2008, 10:38 AM
|
Re: A Tutorial For This Menu?
|
Posts: 573
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
Something bad happened in IE6!!!??? That is sort of rare, isn't it?
|
|
|
|
04-04-2008, 12:18 PM
|
Re: A Tutorial For This Menu?
|
Posts: 4,254
Name: Tim Daily
Location: Apex, NC, US, Sol 3
|
Quote:
Originally Posted by rolda hayes
Hold That Thought....
Messes up the "people" section in IE6 !
|
What's it doing, specifically? It's probably just a matter of a conditional comment. Or check out positioniseverything.net.
tim 
|
|
|
|
04-04-2008, 01:52 PM
|
Re: A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
the people section is just a list of links at the bottom right of the image.
There is a seperate css file for IE6...
Code:
.menu2 li a.top_link span
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/tab_off.png', sizingMethod='crop');
}
.menu2 li a.top_link b
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/tabb_off.png', sizingMethod='crop');
}
.menu2 li a.top_link b.down
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/tabdown_off.png', sizingMethod='crop');
}
.menu2 li a.top_link:hover span
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/tab.png', sizingMethod='crop');
}
.menu2 li a.top_link:hover b
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/tabb_on.png', sizingMethod='crop');
}
.menu2 li a.top_link:hover b.down
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/tabdown_on.png', sizingMethod='crop');
}
.menu2 :hover ul.sub li {
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/submid.png', sizingMethod='crop');
}
.menu2 :hover ul.sub li.fly
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/submid_r.png', sizingMethod='crop');
}
.menu2 :hover ul.sub li.subtop,
.menu2 :hover ul :hover ul li.subtop,
.menu2 :hover ul :hover ul :hover ul li.subtop,
.menu2 :hover ul :hover ul :hover ul :hover ul li.subtop
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/subtop.png', sizingMethod='crop');
}
.menu2 :hover ul.sub li.flytop,
.menu2 :hover ul :hover ul li.flytop,
.menu2 :hover ul :hover ul :hover ul li.flytop,
.menu2 :hover ul :hover ul :hover ul :hover ul li.flytop
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/subtop_r.png', sizingMethod='crop');
}
.menu2 :hover ul.sub li.subbot,
.menu2 :hover ul :hover ul li.subbot,
.menu2 :hover ul :hover ul :hover ul li.subbot,
.menu2 :hover ul :hover ul :hover ul :hover ul li.subbot
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/subbottom.png', sizingMethod='crop');
}
.menu2 :hover ul.sub li.flybot,
.menu2 :hover ul :hover ul li.flybot,
.menu2 :hover ul :hover ul :hover ul li.flybot,
.menu2 :hover ul :hover ul :hover ul :hover ul li.flybot
{
background:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/subbottom_r.png', sizingMethod='crop');
}
__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-04-2008, 02:19 PM
|
Re: A Tutorial For This Menu?
|
Posts: 4,254
Name: Tim Daily
Location: Apex, NC, US, Sol 3
|
Quote:
Originally Posted by rolda hayes
the people section is just a list of links at the bottom right of the image.
There is a seperate css file for IE6...
|
I see that you've put in the alpha image filters for the transparency fix; but what you're not telling me is what IE6 is or is not doing. Otherwise how do I know what I'm looking for?
tim 
|
|
|
|
04-04-2008, 02:22 PM
|
Re: A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
I did in post #9 !!
Sorry that was the problem described not what it should be!
The "people" drop down is not there and the people in the drop down are just listed as blue links in the bottom left corner of the main image.
__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-04-2008, 02:34 PM
|
Re: A Tutorial For This Menu?
|
Posts: 6,065
Location: Tennessee
|
I'd say it has something to do with these errors:
line 17 column 32 - Warning: discarding unexpected </a>
line 19 column 9 - Warning: missing <li>
line 19 column 9 - Warning: missing </ul> before </li>
line 27 column 5 - Warning: discarding unexpected </li>
line 13 column 1 - Warning: missing </div> before <li>
line 28 column 5 - Warning: inserting implicit <ul>
line 45 column 9 - Warning: missing </ul> before </li>
line 60 column 5 - Warning: discarding unexpected </li>
line 13 column 1 - Warning: missing </div> before <li>
line 62 column 5 - Warning: inserting implicit <ul>
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|
|
|
|
04-04-2008, 03:01 PM
|
Re: A Tutorial For This Menu?
|
Posts: 541
Name: Darren
Location: England
|
Thanks LadynRed - Ill go through them now.
BTW what did you use to determine the errors?
@Serandfae, heres a screen shot of IE6 FYI.
__________________
"I always wanted the adoration of John Lennon - With The Anonimity of Ringo Starr..."
QuizBay Help with the testing of this Beta site!
|
|
|
|
04-04-2008, 03:26 PM
|
Re: A Tutorial For This Menu?
|
Posts: 6,065
Location: Tennessee
|
I have the HTML Tidy extension installed for Firefox, it shows the validation errors according to the page's doctype. Very handy 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|
|
|
|
04-04-2008, 08:41 PM
|
Re: A Tutorial For This Menu?
|
Posts: 6,065
Location: Tennessee
|
With the Firefox extension it's not necessary to go to any other site 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|
|
|
|
04-04-2008, 09:07 PM
|
| |