|
A Tutorial For This Menu?
04-03-2008, 03:36 PM
|
A Tutorial For This Menu?
|
Posts: 960
Name: Darren
Location: England
|
Hi, would anyone know where I can find a tutorial for this type off menu?
Cheers
__________________
I Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-03-2008, 03:42 PM
|
Re: A Tutorial For This Menu?
|
Posts: 10,016
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 !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|
|
|
|
04-03-2008, 03:46 PM
|
Re: A Tutorial For This Menu?
|
Posts: 960
Name: Darren
Location: England
|
Picking it apart now....
*its going to be a long night...!*

__________________
I Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-03-2008, 07:22 PM
|
Re: A Tutorial For This Menu?
|
Posts: 960
Name: Darren
Location: England
|
Cool! finished it!
Here it is!
any errors in the code, feel free to let me know!
__________________
I Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-03-2008, 09:17 PM
|
Re: A Tutorial For This Menu?
|
Posts: 10,016
Location: Tennessee
|
Looks good Darren, good job !
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|
|
|
|
04-04-2008, 09:11 AM
|
Re: A Tutorial For This Menu?
|
Posts: 960
Name: Darren
Location: England
|
Hold That Thought....
Messes up the "people" section in IE6 !
__________________
I Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-04-2008, 11:38 AM
|
Re: A Tutorial For This Menu?
|
Posts: 3,985
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
Something bad happened in IE6!!!??? That is sort of rare, isn't it?
|
|
|
|
04-04-2008, 01:18 PM
|
Re: A Tutorial For This Menu?
|
Posts: 8,936
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, 02:52 PM
|
Re: A Tutorial For This Menu?
|
Posts: 960
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 Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-04-2008, 03:19 PM
|
Re: A Tutorial For This Menu?
|
Posts: 8,936
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, 03:22 PM
|
Re: A Tutorial For This Menu?
|
Posts: 960
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 Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-04-2008, 03:34 PM
|
Re: A Tutorial For This Menu?
|
Posts: 10,016
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 !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|
|
|
|
04-04-2008, 04:01 PM
|
Re: A Tutorial For This Menu?
|
Posts: 960
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 Just a test to see what happens... Please login or register to view this content. Registration is FREE
"Let us be thankful for the fools. But for them the rest of us could not succeed..."
|
|
|
|
04-04-2008, 04:26 PM
|
Re: A Tutorial For This Menu?
|
Posts: 10,016
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 !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|
|
|
|
04-04-2008, 09:41 PM
|
Re: A Tutorial For This Menu?
|
Posts: 10,016
Location: Tennessee
|
With the Firefox extension it's not necessary to go to any other site 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|
|
|
|
04-04-2008, 10:07 PM
|
Re: A Tutorial For This Menu?
|
Posts: 3,985
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
I just use the web developer toolbar, it has built in validation in the menus, although it does take you to the actual w3.org validation page in order to do it. I find this convenient, however, as seeing the actual validation is useful to me.
|
|
|
|
04-04-2008, 10:56 PM
|
Re: A Tutorial For This Menu?
|
Posts: 8,936
Name: Tim Daily
Location: Apex, NC, US, Sol 3
|
Quote:
Originally Posted by rolda hayes
|
OK, sorry I didn't quite understand at first what you were saying IE6 was doing. But it looks like LnR answered it already. Something like that looks like a specificity issue, such as putting a style rule on .classname a rather than .classname, for instance, if straight validation doesn't do it.
tim 
|
|
|
|
04-05-2008, 11:11 AM
|
Re: A Tutorial For This Menu?
|
Posts: 10,016
Location: Tennessee
|
Quote:
|
seeing the actual validation is useful to me.
|
HTML Tidy DOES show the 'actual validation'.
I use the Developer toolbar too, but prefer to use Tidy for the validation piece, it's just simpler, all on one screen.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|
|
|
|
|
« Reply to A Tutorial For This Menu?
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|