Archive for October, 2011

CSS Menu and !DOCTYPE

Sunday, October 23rd, 2011

From time to time users are asking my why IE7/8/9 doesn’t show the popup menu on hover. And often the reason is bad !DOCTYPE of the html page.

For some reason IE is sensitive to these. For example, IE7 may not support the menu popup feature if your document starts with this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

And if you put the right code everything will start to work:

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>

In this case IE just wants to see the exact full definition for HTML 4.1 or else it doesn’t render the page as expected.

If there is no !DOCTYPE definition, add it.

If it is not the right one, replace it with the proper version.

Here are the most common:

HTML 4.01 Transitional:

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>
<html>

HTML 4.01 Strict

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>
<html>

XHTML 1.0 Transitional:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>

XHTML 1.0 Strict:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>

Most other modern browsers will be able to work even if the doctype isn’t in it’s full version, but IE is (as always) a special case…

 

One different download site…

Friday, October 21st, 2011

In the last 10 years I am dealing a lot with download sites. Each title must be submitted to hundreds and even thousands sites. sometimes they are accepting my submissions, sometimes they are rejecting, but the people behind one site managed to surprise me. I never expected someone to contact me via email and ask for additional info. That means that someone is actually careful whit this site. They are checking what to list, contacting the developer. And this is the link if you are curious which one this site is: LifetimeUpgrades.com

Adding CSS Menu to your page: step by step example

Tuesday, October 11th, 2011

I just wrote one additional help page for my CSS Menu Generator for those who are not sure what to do with the generated code:

[ Adding CSS menu to your page ]

 

Rest in peace, Steve

Thursday, October 6th, 2011

You changed my life.

And you’ll never be forgotten.

http://www.apple.com/stevejobs/

And Screen Ruler 5.01 came online…

Monday, October 3rd, 2011

Could be silly, but just a week after the initial launch of Screen Ruler 5.0 the first update is now online. I found few small issues (like forgotten titles for some windows) and couldn’t resist the temption to fix them. So, if you want you can go and re-download the program:

MS Windows XP, Vista, 7 (4.9MB; 32bit):

Screen Ruler for Windows

Mac OS X 10.5+ / Intel (13.6MB; 64bit):

Screen Ruler for Windows

Duplicates Finder 2.0

Monday, October 3rd, 2011

You asked, I did it: the Duplicates Finder tool now comes with “ignore case” option:

http://wonderwebware.com/duplicatefinder







Blog powered by WordPress
Entries (RSS) and Comments (RSS).