Add the following preceded by a & after video URL:
~ For autoplay: Add autoplay=1 or autoplay=true
~ For looping: Add loop=1 or loop=true
Note: both could be added.
Examples
<object width=”480″ height=”385″><param name=”movie” value=”http://www.youtube.com/p/90C68D73786C56E3″ /><embed src=”http://www.youtube.com/p/90C68D73786C56E3&autoplay=1&loop=1&fmt=18″ type=”application/x-shockwave-flash” width=”480″ height=”385″></embed></object>
In IE6 or IE7 if there is a floated layout and you have an absolute-positioned div in the mix sometimes it just won’t show up.
SOLUTION:
One easy way to fix the bug is to add an extra dummy <div> to “separating” the position:absolute from the float in the source code (either being between them, or wrapping [...]
If you position an element (an image, a table, or whatever) absolutely on your page, it will appear at the exact pixel you specify. Say I wanted a graphic to appear 46 pixels from the top of the page and 80 pixels in from the right, I could do it. The CSS code you’ll need [...]
You must noticed www1 or www2 once in a while when you are visiting a website. WWW1, WWW2 or even WWW3 is nothing but a mirror of the original web server which is typical WWW. Many websites like government, banks even major search engines like Google (www1.google.com or www2.google.com) and Yahoo (www1.yahoo.com or www2.yahoo.com) uses [...]
You can “hide” part of your blog post so that only excerpts (or choice few words) are displayed on the home and archive pages. When you do this, an automatic link will be placed directly after your excerpt, pointing the reader to the full content of the post. Watch this video to learn how:
Search engine marketing consist of two basic forms, SEO (search engine optimization) and PPC (pay per click) advertising . While many passionately claim one is better than the other the simple facts can be hard to come by. For any business owner who is new to search engine marketing, it is easy to get overwhelmed [...]
When a CSS propriety is specified twice, the browser will commonly use the last one. Let’s see an example:
#main {
width:600px;
width:800px;
}
In this example the browser will assign width 800 pixels to the #main element.
The declaration !important can be used in cascading style sheets to give priority to some parameters.
#main {
width:600px !important;
width:800px;
}
In the example above the browser [...]
Every HTML element is essentially a box, the width of which is the total of its margin, border, padding and content area. Imagine the following CSS rule:
div {
margin: 5em;
padding: 4em;
border: 1em solid grey;
width: 30em
}
This means that each div is 50em wide in total. This amount is made up of a 30em wide content area, [...]