Saturday, January 22, 2011

How to make recent comment

Recent comment in (blogger) is something that you or your visitors express opinion of something on your blog .
For myself , I have two methods to make recent comment on my blog :
1- Use a Gadget from Blog buster.
2- Use the Script code .
1- Use a Gadget from Blog buster :
-  Log in to your Account with your ID -> Dashboard ;
- Select a Gadget in wherever you like ( Sidebar Gadget , Buttom Gadget ...).
- Find the Gadget Recent Comment and select it .-> save your template. See the image :
2- Use the Script code :
-  Log in to your Account with your ID -> Dashboard ;
- Select a Gadget in wherever you like ( Sidebar Gadget , Buttom Gadget ...).
- Copy the code below to paste in your Gadget by selecting HTML code/Javascript box .

Please Select on Highlight All and then Click on Copy to Clipboard

Note: In the script code that you have copied to paste in your html code , you must change my blog name to your own blog . So you have to find the code below and change it (with red name).You can find this code at the buttom of the script code .Please change
withoutit-learnblog to your own blog .

Sunday, January 16, 2011

How to split header to 2

Sometimes you want to design your template blog.Now I want  to make the blog Header into 2 column as the picture .
Follow the below steps:
1- Find the code  ]]></b:skin>
2- Copy the code below to paste exactly above ]]></b:skin>.



Please Select on Highlight All and then Click on Copy to Clipboard


Note: If your template has the same code , you have to take only some part of above code and edit by yourself. You have to edit your  width pixel of #header- wrapper to suit your template.
3- Find the code below :
<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Test Blog (Header)' type='Header'/>
</b:section>
</div>

4- Copy the code below to replace the above code or you can make any part to make your code as copied code.



Please Select on Highlight All and then Click on Copy to Clipboard



5- Save your template.

How to make related post with thumbnails

Related posts with thumbnails are the posts that display the thumbnails with summary text under every post selected in the same label.And when visitors visit your posts , they are shown under that post to relate to the same label.The step to make ralated posts with thumbnails:
1- Log in your account to Dashboard -> Edit HTML  and check the "Expand Widget Templates" check box.
2- Find the code </head>.
3- Copy the code below to paste before </head>.


Please Select on Highlight All and then Click on Copy to Clipboard



4- Find the code : <div class='post-footer-line post-footer-line-1'> or <p class='post-footer-line post-footer-line-1'>
5- Copy the code below to paste after <div class='post-footer-line post-footer-line-1'> or <p class='post-footer-line post-footer-line-1'>



Please Select on Highlight All and then Click on Copy to Clipboard


6- You can correct the maximum number of related posts being displayed by editing this  code var maxresults=5; .You can change 5 to any number to display your related posts to suit your template width .
7- Do not  forget to save your template.

Saturday, January 15, 2011

How to make scrolling text box with links



Look at the scrolling text box image and you can click on the box bar to select the title from the box that I use with URL links.

how to make drop down scroll

Drop down scroll menu (Navigation) is the navigation contains many links with topic menu and use one line space in blog. And visitors click on it , it shows many topic links to select. Look at my Drop-down scroll menu.



Now let's go How to make it : Just copy the code to paste wherever you like , normally put in html/javascript box of Gadget.See the code
<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"size=1name=menu><option value=0 selected>this title will be shown first</OPTION>
<option value="the URL address">the title</option> </select></form>
Note:With red words (this title will be shown first) :It is shown first in your drop-down menu . For my example above e.g My blog list.
"the URL address" put the address that you want to link.
the title: .Give the name to your link.
Be careful to make a lot of links : Just copy <option value="the URL address">the title</option> to paste step to step (how many links you like) but inside the code </select></form>. You also note to the width of your scroll menu is an acordance with your title of your link, it is automatic to your length .So you have to make a short to your title of your link.It has another way to make the width.


Please Select on Highlight All and then Click on Copy to Clipboard


Tuesday, January 11, 2011

How to put time and date script

I am sorry , I have no knowledge about this , just copy the below code to paste in your blog .
This is an example to display in your blog.


<script language=Javascript1.2>
<!--

var tags_before_clock = "<b>It is now "
var tags_middle_clock = "on"
var tags_after_clock  = "</b>"

if(navigator.appName == "Netscape") {
document.write('<layer id="clock"></layer><br>');
}

if (navigator.appVersion.indexOf("MSIE") != -1){
document.write('<span id="clock"></span>');
}

DaysofWeek = new Array()
  DaysofWeek[0]="Sunday"
  DaysofWeek[1]="Monday"
  DaysofWeek[2]="Tuesday"
  DaysofWeek[3]="Wednesday"
  DaysofWeek[4]="Thursday"
  DaysofWeek[5]="Friday"
  DaysofWeek[6]="Saturday"

Months = new Array()
  Months[0]="January"
  Months[1]="February"
  Months[2]="March"
  Months[3]="April"
  Months[4]="May"
  Months[5]="June"
  Months[6]="July"
  Months[7]="August"
  Months[8]="September"
  Months[9]="October"
  Months[10]="November"
  Months[11]="December"

function upclock(){
var dte = new Date();
var hrs = dte.getHours();
var min = dte.getMinutes();
var sec = dte.getSeconds();
var day = DaysofWeek[dte.getDay()]
var date = dte.getDate()
var month = Months[dte.getMonth()]
var year = dte.getFullYear()

var col = ":";
var spc = " ";
var com = ",";
var apm;

if (date == 1 || date == 21 || date == 31)
  {ender = "<sup>st</sup>"}
else
if (date == 2 || date == 22)
  {ender = "<sup>nd</sup>"}
else
if (date == 3 || date == 23)
  {ender = "<sup>rd</sup>"}

else
  {ender = "<sup>th</sup>"}

if (12 < hrs) {
apm="<font size='-1'>pm</font>";
hrs-=12;
}

else {
apm="<font size='-1'>am</font>";
}

if (hrs == 0) hrs=12;
if (hrs<=9) hrs="0"+hrs;
if (min<=9) min="0"+min;
if (sec<=9) sec="0"+sec;

if(navigator.appName == "Netscape") {
document.clock.document.write(tags_before_clock+hrs+col+min+col+sec+apm+spc+tags_middle_clock+
spc+day+com+spc+date+ender+spc+month+com+spc+year+
tags_after_clock);
document.clock.document.close();
}

if (navigator.appVersion.indexOf("MSIE") != -1){
clock.innerHTML = tags_before_clock+hrs+col+min+col+sec+apm+spc+tags_middle_clock+
spc+day+com+spc+date+ender+spc+month+com+spc+year+tags_after_
clock;}
}

setInterval("upclock()",1000);
//-->
</script>



Please Select on Highlight All and then Click on Copy to Clipboard


Monday, January 10, 2011

How to make text area

What is the text area ? . The text area is the area or place that we can save html code or words for visitors can copy them to paste in their blogs or in blog Gadgets. Now I show one html code that the viewers can select (Highlight) and copy to the clipboard.Look at the script and code below :
<script type="text/javascript">
function CopyToClipboard()
{
   CopiedTxt = document.selection.createRange();
   CopiedTxt.execCommand("Copy");
}
</script>
<div>
<form name="copy">
<div align="left">
<span style="color: blue; font-weight: bold;"><b>
<i>Please Select on Highlight All and then Click on Copy to Clipboard</i></b></span>
<input onclick="javascript:this.form.txt.focus();
this.form.txt.select();" type="button" value="Highlight All" />
<input onclick="CopyToClipboard()" type="button" value="Copy to clipboard"  /> </div>
<div align="left">
</div>
<div align="left">
<textarea cols="55" name="txt" rows="100" style="height: 100px; width: 600px;">
Insert your text or html code here </textarea></div>
</form>
</div>

The red ones you can change to your purpose to suit your blog template .This is an example image for text area .
- How to make it : Copy the html code below to paste in your post or in your Gadget , but be careful , when you want to paste the html code  to your new post , you have to select Edit HTML Do not select Compose in your new post.

Saturday, January 8, 2011

How to make carousel in blog

Carousel in blog displayed as flash images or slideshow in blog.There are many styles of carousel displaying in blog.Now I make one style (Horizonal style) in blog. Let's follow some steps below :
1- Log in your account directly to your Dashboard ( Do not forget to download your full template first to keep in your folder computer).
2- Find the code ]]></b:skin> ( Use Ctrl and F on your keyboard computer to find this code by typing this code in X Find area).
3- Copy the CSS code below to past before the code ]]></b:skin> .


Please Select on Highlight All and then Click on Copy to Clipboard



4- As step 2 find the code </head> .
5- Copy the script below to paste exactly before the code </head> .

Note: If your template already has had jQuery 1.2.6 - New Wave Javascript , please delete it from your temp late .




Please Select on Highlight All and then Click on Copy to Clipboard

6- Find the good place (Gadget) to place your htlm code to display your carousel images .Normally you can place at the header or buttom of your blog .Sometimes you can put at sidebar Gadget unless you take Vertical style of your carousel.
7- After finding the best Gadget for your carousel displaying , please copy the html code beloww to put in your best javascript/html box .


Please Select on Highlight All and then Click on Copy to Clipboard

SEE MY CAROUSEL AT THE BUTTOM OF THIS BLOG.

Friday, January 7, 2011

How to make slideshow menu in blog

Slideshow menu tabs are always used in magazin templates at the head of blog .Slideshow tab menu is a widget that provides you a multiple tab of menu in one simple page. By adding this Slideshow tab menu , will attract your visitors easily to view your blog . Look at the method below "How to make slideshow menu in blog":
  1. Log in your account to Dashboard ;
  2. Go to Edit HTML by clicking on Design .At this time you have to download your old template first by selecting on "Download full template to keep in your folder computer (recommeded on your desktop , it is to find to upload your old template , if something wrong in your new template).
  3. Find the code ]]></b:skin> . The easy way to find this code in your template , you have to press Ctrl and F on your computer keyboard .
  4. Copy the code below to place before ]]></b:skin> .
  5. Please Select on Highlight All and then Click on Copy to Clipboard
  6. Find the code </head> and copy the the script below to put before it (</head> ).
  7. Please Select on Highlight All and then Click on Copy to Clipboard
  8. Save your template
  9. Now it is time to find the place for your slideshow tab menu. You can place your slideshow tab menu in anywhere you like as in your new post , your left or right sidebar , top ..  , or you want to place in any blog's Gadget of your template blog. Please copy the html code below to place in anywhere you prefer.
  10. Please Select on Highlight All and then Click on Copy to Clipboard
  11. Click save your template and view your blog.
  Note: If you want to edit or change anything of your slideshow tab menue , you can edit or change something as width , name , Link .... in the html code at step 7 .
Look at my example below :



how to upload some documents to your blog

You can make your free blog and you don't want to pay any charge to file hosting websites and you want to keep some documents as from word , excel , PDF files in your free blog. [...]

How to upload files to file hosting web

Now you want to upload files to file hosting webpages. You can upload any file to file hosting webs with free . [...]


How to Log in and upload files at 4sharded.com

At the previous tutorial , I suppose you had made the 4shared account successfully . In this tutorial method .[...]


How to get the URL , HTML code and Forum code to link to your blog

At the previous step you have known about uploading the files to 4shared.com , now you want to get the URL , . [...]

How to install Khmer Unicode on Galaxy Note N7000

This is my personal use only but I want to share to whom Cambodia people want to use Khmer Unicode on their Galaxy Note .Now let begin: - Y...