Friday, July 30, 2010

Test Youtube video autoplay (Angklung music)



This is the original embed code from Youtube for the above video:

<object width="400" height="324"><param name="movie" value="http://www.youtube.com/v/lniVx_pFM_A&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/lniVx_pFM_A&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="400" height="324"></embed></object>


Below is the edited Youtube video with &autoplay=1 (highlighted in red) appended to the end of the source URL to make the video autoplay:

<object width="400" height="324"><param name="movie" value="http://www.youtube.com/v/lniVx_pFM_A&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/lniVx_pFM_A&hl=en&fs=1&autoplay=1
" type="application/x-shockwave-flash" allowfullscreen="true" width="400" height="324"></embed></object>

Thursday, July 22, 2010

Test removing border from image

The photo displayed below uses codes sent to me by a blogger and as you can see, there is a border:




Compare with the photo below and you can see that the border has been removed:




The border was removed by adding this inline CSS style="border:none;" immediately after the img tag. For further details, see How to remove border in images uploaded by Blogger.com

Monday, July 19, 2010

Testing images side by side

Codes as given by blogger:

PhotobucketPhotobucket

With HTML non-breaking space in between

Photobucket  Photobucket

Friday, July 16, 2010

Sunday, July 04, 2010

Test individual font style for specific post title

Let's see if the post title is itallic?

Test successful. Blogger allow CSS in the post title field. The above individualized post title was created by putting the following into the post title field:

<div style="font-style:italic; color:red;">Test font style for post title</div>

A second test proved that one can also use <span> too like below:

<span style="font-style:italic; color:red;">Test font style for post title</span>

and even nest span within span (or div) like the above title which is now two colors using the following:

<span style="font-style:italic; color:red;">Test <span style="color:green;">individual&kt;/span> font style for specific post title</span>

However, test revealed there probably is a limit on the number of characters one can put in the post title field to make it really multi-color.