02Jul

Google’s Improved Flash Indexing

No comments

This is of interest to most:
http://googlewebmastercentral.blogspot.com/2008/06/improved-flash-indexing.html

a2a_linkname=”Google’s Improved Flash Indexing”;
a2a_linkurl=”http://manewc.com/2008/07/02/googles-improved-flash-indexing/”;
a2a_color_main=”D7E5ED”;a2a_color_border=”AECADB”;a2a_color_link_text=”333333″;a2a_color_link_text_hover=”333333″;

09Apr

Multiple Suckerfish Dropdowns on the same HTML Page

No comments

During my day job, I exclusively use Suckerfish for any drop down menu. I finally had some time to update the javascriopt sfHover function to allow for multiple menus on the same page. I thought I would just place the code here for future reference. In this piece of code the function will look for [...]

Categories: Web Development
03Jan

Suckerfish Drop Down Menu Over SIFR Header Replacement Flash Movie.

1 comment so far

At this point we all know that in order to get drop down menus, like Suckerfish, to hang over flash movies you will need to make the flash movie have a transparent value for the wmode parameter. I ran into an issue one time with drop down menus hanging over my SIFR headers. Here is [...]

Categories: Web Development
28Dec

.PNG Hacks for Internet Explorer (IE 5.5)

No comments

Project: Display .png images among modern browsers
Resources: http://www.alistapart.com/
Summary: This can go in your .css file for the proper browsers:

#mypngimage {
background: transparent url(”/path/to/image.png”) repeat-y left top;
padding: 8px 0;
}
.. and for IE 5.5 - IE 6.0 you will append this:

#mypngimage {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’/path/to/image.png’,sizingMethod=’scale’);
/* NOTE: YOU WILL ALSO HAVE TO DEFINE THE BLOCK */
display: block;
height: 50%;
width: 199px;
/* I HAVE FOUND [...]

Categories: Web Development