html

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.satchmoproject.com/ If you answer Yes, to any of these, then Satchmo might be the right tool for you. Satchmo's mission is to use Django to create an open source framework for creating unique and robust online stores. To provide maximum flexibility, Satchmo is licensed under the BSD license. Here are some live stores that are currently using Satchmo. Feel free to visit but these are live so do not place orders unless you really want to purchase the products. Please view the whole list here.

Satchmo Project

http://getshopped.org/ WP e-Commerce is a robust WordPress plugin suitable for anyone who wants to start selling products, downloads or services online. Whether you sell 10 or 10,000 products, we make it easy to add a WordPress e-Commerce shopping cart to your site. Best of all it is easy to manage. Quickly add products and organize your catalogue using the familiar WordPress interface. Our WordPress e-Commerce Plugin boasts more than 1.7 million downloads - that's quite an endorsement.

WordPress Ecommerce a WordPress Shopping Cart Plugin - getShopped.org

CSS Box Shadow

http://css-tricks.com/snippets/css/css-box-shadow/ The horizontal offset of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box. The vertical offset of the shadow, a negative one means the box-shadow will be above the box, a positive one means the shadow will be below the box. The blur radius (optional), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be. The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).

How to hide, show, or toggle your div

function toggle ( ) { var ele = document. getElementById ( "toggleText" ) ; var text = document. getElementById ( "displayText" ) ; if ( ele. style . display == "block" ) { ele. style . display = "none" ; text. innerHTML = "show" ; } else { ele. style . display = "block" ; text. innerHTML = "hide" ; } } show peek-a-boo By default, the peek-a-boo text is loaded when the page loads but the display attribute for the div that the content resides in is set to none so it is not visible to the visitor. When the link is clicked, the toggle() JavaScript functions executes and checks the value of the display style for the div that contains the content that we want to toggle. If the display style is none , the function will: Set the display style to block - This is executed in the else block of the function. http://www.randomsnippets.com/2008/02/12/how-to-hide-and-show-your-div/

How to Embed RSS Feeds into HTML Web Pages – The Easy Way

http://www.labnol.org/internet/tools/embed-rss-feeds-add-html-websites-javascript/2515/ Step 1: Copy the URL of that RSS feed to the clipboard (make sure you copy the location of the feed, not the website). Step 2: Append the feed URL to this string- http://gmodules.com/ig/creator?url= Confused ? Let me illustrate that with a quick example.
http://developers.facebook.com/docs/reference/plugins/like/

Like Button - Sviluppatori di Facebook

standard - displays social text to the right of the button and friends' profile photos below. Minimum width: 225 pixels. Minimum increases by 40px if action is 'recommend' by and increases by 60px if send is 'true'. Default width: 450 pixels. Height: 35 pixels (without photos) or 80 pixels (with photos). button_count - displays the total number of likes to the right of the button.

css - How do I stick an image to the bottom of the visible screen, and be centered? - Stack Overflow

http://stackoverflow.com/questions/2570877/how-do-i-stick-an-image-to-the-bottom-of-the-visible-screen-and-be-centered I have a website, and I need to have an image centered at the bottom of the visible page. So in any screen size, the image will still be at the bottom, and centered.
http://www.web-source.net/216_color_chart.htm

color chart, codes, hexadecimal rgb values

If you're looking for a 216 web safe color chart, you've come to the right place. However, before reviewing the chart, you may be interested in learning a little bit about the 216 web safe colors. Netscape specified 216 colors that have precedence in web browsers based on the 256 colors displayed within an 8-bit system. As 40 colors displayed differently between PCs and MACs, they were eliminated.

HTML Popup Window Code

// Popup window code function newPopup(url) { popupWindow = window.open( url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes') } Open a popup window This results in: This example actually uses JavaScript code for the popup window. http://www.quackit.com/html/codes/html_popup_window_code.cfm
Cascading Style Sheets or a combination of the two can be used. Three different approaches are presented in this How-to. All examples use bare minimum code for illustration and may need to be enhanced for your projects. Two classic (i.e. old fashioned) Javascript methods are presented on this page. http://lawrence.ecorp.net/inet/samples/dhtml-rollover-tble-cells-js.shtml

Table Cell Rollover

IFRAME - Inline Frame

The IFRAME element defines an inline frame for the inclusion of external objects including other HTML documents. IFRAME provides similar functionality to OBJECT . One advantage of IFRAME is that it can act as a target for other links.

IE PNG Fix - TwinHelix

This script adds near-native PNG support with alpha opacity to IE 5.5 and 6. Now you can have full translucency and no more ugly grey borders! Full CSS background positioning and repeat are supporting (including CSS sprites).