Quote:
quote:Originally posted by plb
oooshola
I like your Black History site very much. I have a lot of questions.
How did you do you do your menus?
I note that your top menu bar has gradient graphics, ToolTips, rollovers and drop down sub-menus. As far as I know these aren't available or easy with the stock menus. You have what looks like a stock Microsoft/TBH menu bar on the bottom of the page. You seem to have abandoned the breadcrumb displays in the pages. I presume only the bottom menu shows additional menu elements as a function of roles.
|
I ended up making the menu in a roundabout way by tinkering with some javascript and stuff. However, there's apparently a cleaner way to do it using asp.net alone--read this whole post at the asp.net website:
http://forums.asp.net/t/1120354.aspx
Yes, I have a regular text menu bar at the bottom. There's no drop downs on it because the MaximumDynamicDisplayLevels is set to zero down there. And Yes, I ditched the breadcrumbs because it cluttered the site; plus, the shallow sitemap depth for this site doesn't really call for it.
Quote:
quote:
I see that at least some of your pages use mootools. Are these mootools menus?
|
No, they're not mootools menus. The "Make Homepage" tooltip is totally a separate entity from the menu. In fact, it's made by this javascript guru:
http://www.walterzorn.com/
However, the slideshow is mootools.
Quote:
quote:
How did you do the calendar and tabs?
Is this a commercial control? I presume the data by date is stored in a database. Is this the standard SQL Server 2005 database?
|
I got the highly configurable calendar from this guy:
http://www.meanfreepath.com/ (the free version). I simply parse the date string and use it as parameters for the gridview results at the bottom. So yes, the articles are stored in a database. However, I store day month and year separately since the actually DateTime type in SQL 2005 has a limited range (BAD for a history site).