How to Change Blogger Background Picture-Background Page

Posted by Unknown 0 comments
How to change blogger background image/picture ?How to change blogger background color ?How to change blogger background HTML ?

If you are stuck with these sort of questions then,Here is another creamy post about changing blogger page background .

First, go to your Edit HTML Template page.

Dashboard > Layout > Edit HTML

Then look for the body { ... } section, usually appear after the Variable Definitions.don't go for HTML <body> tag.

body {
background:$bgcolor; margin:0;
color:$textcolor;
font: x-small "Trebuchet MS", Trebuchet, Verdana, Sans-serif;
font-size: small; text-align:
center; 
}

It doesn't have to look exactly like that. As long as you found the "body { }" section.



Now to change the background, all you need to do is play around with the background: line.

 How to change the colour of the background?


background: #FFFFFF;

Just change the #FFFFFF to other hexadecimal colour value. #FFFFFF is white. For more colours, check them out  here hexadecimal colours.

Also, you can put the color name if you want.

background: white;


However, for more variety of colours, you are recommended to use the hexadecimal colour code.

How to put image as background?

Add Background Image:
First upload your background to the Internet - ImageShack, Photobucket or any of your favourite photo uploading sites. Then obtain the direct link to the picture.

background: url(LINK);
Just add the image URL in place of LINK and you're done. Also you can modify the positioning and location of the image.

Just add these code after the URL part.

1.Repeat the image horizontally (left to right):

repeat-x 

 2.Repeat the image vertically (top to bottom):

repeat-y 

3.No image repeat:

no-repeat 

4.Repeat both vertically and horizontally:

(don't put any "repeat" tag) 

5.Position image to the left or right:

left (for left side)
or
right (for right side) 

6.Position image to center of screen:

center 

7.Fix image on background (to prevent image from moving when scrolling):

fixed


Now your complete background code may look like this:

background: #FFFFFF url(http://abc.com/image.jpg) repeat-x fixed;

Note: Dont forget to put " ;" at the end of the statement.This is the silly big mistake we usually do and pull our hair for hours :)
Please do share and comment if you like the post.Please contact or comment your question for any queries.

Continue Reading :)

Privacy Policy

Posted by Unknown 0 comments
Privacy Policy for www.genuinecontent.blogspot.com

If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at rajpurohitvikramkumar@yahoo.com.

At www.genuinecontent.blogspot.com, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by www.genuinecontent.blogspot.com and how it is used.

Log Files
Like many other Web sites, www.genuinecontent.blogspot.com makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user’s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.

Cookies and Web Beacons
www.genuinecontent.blogspot.com does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser.

DoubleClick DART Cookie
.:: Google, as a third party vendor, uses cookies to serve ads on www.genuinecontent.blogspot.com.
.:: Google's use of the DART cookie enables it to serve ads to users based on their visit to www.genuinecontent.blogspot.com and other sites on the Internet.
.:: Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - http://www.google.com/privacy_ads.html

Some of our advertising partners may use cookies and web beacons on our site. Our advertising partners include ....
Google Adsense
These third-party ad servers or ad networks use technology to the advertisements and links that appear on www.genuinecontent.blogspot.com send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.

www.genuinecontent.blogspot.com has no access to or control over these cookies that are used by third-party advertisers.

You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. www.genuinecontent.blogspot.com's privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.

If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers' respective websites.
Continue Reading :)

List of Currencies of different Countries with pictures

Posted by Unknown 0 comments

images/photos of different currency notes from different countries list of currencies in the world. 

The coins from different countries are different,so today I will show you some pictures of genuine money from different countries.



Egypt: pound


Ireland: pound


Estonia: Karenni

Antigua and Barbuda: the former Eastern Caribbean


Austria: shilling

Australia: Yuan


Barbados: Yuan










USA:Dollar


Papua New Guinea: kina


Bahamas: Yuan


Bajisita: Rs


Paraguay: Guarani


Brazil: Li Yayi


Belarus: rubles


Bhutan


North Korea:Yuan


Germany: Mark


Russia: ruble


France: franc


Cambodia: Villiers


Liberia: Yuan


Mexico: Peso


South Africa: crown


South Africa: Rand


European Union: the euro


Japan: Japanese Yen


Somalia: shilling


India: Rs


Indonesia: rupees (Shield)


Macao, China: MOP


Hong Kong, China: HK


Continue Reading :)

How to Disable image copy on a blogger web page

Posted by Unknown 0 comments

How to Protect images from being copied/Disabling right-click on a web page.Avoid copy infringement .


Want to protect your source code? Using this code will prevent the vast majority of users from right-clicking over a page and choosing "View source", or  right-clicking over an image and saving it. There are other ways to view the code, though... This is not always a wise technique to use - it would have to be a very special piece of code to want to hide, and those who would want to steal it will always be able to find a way to see it. 
 Use this code in the head section of your page


Code for Disabling right-click on a web page

  <SCRIPT TYPE="text/javascript">
<!--
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message="Sorry!! No right click";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</SCRIPT>
Place the above code into <HEAD></HEAD> of your HTML.  

To disable the IE imagetoolbar also add the META TAG below to the HEAD

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

Code for Disabling text copy on a web page


To protect TEXT add 'Disable Text Select' code below into <HEAD></HEAD> of your HTML.

Ways to protect your images


To start off, the straight truth is there is no 100% way to protect your images short of not displaying them on the Internet to begin with. There are many ways to prevent a novice visitor, but no matter what you try, there will ALWAYS be a way to get any image. That said, here are a few attempts you may try in no particular order.

1. Using CSS to position a transparent gif overtop of the image.
<img src="myimage.gif" width="100" height="50">
<img src="transparent.gif" width="100" height="50" style="position:relative; left:-102px; top:0px;">


2. Using span tag to position a transparent gif overtop of the image.
<span style="background-image: url(images/my_image.jpg)"><img src="images/transparent.gif" width="200" height="150" border="0" alt="My protected Image."></span>


3. Use the image as a background of a table and fill the cell with a transparent gif.
<table width="100" height="50">
<tr>
<td background="myimage.gif">
<img src="transparent.gif" width="100" height="50">
</td>
</tr>
</table>


4. Use a watermark.
That is, put a mark on the actual image with an image software. A word, a small graphic logo, anything that would deter a thief but still look nice visually for the common visitor.

Here are a number of very effective methods of keeping unscrupulous surfers from stealing your HTML source:

1. Use the <INVISIBLE> </INVISIBLE> tags around the entire document.  [ Menu > View > Source.  To see this one. ]

2. Use the DONTSTEAL attribute in the <BODY> tag.

3. Ftp to your server, select all files and directories, hit "Delete".

4. Put every existing copy of every file on floppies, place them in a shoebox and bury them in the backyard. There is another version of this method which involves placing the floppies in a plastic bag and hiding them in a different sort of hole. Both are equally effective.

5. Password protect your entire site and make sure no one has the password, not even you.

6. Employ a small but fanatically loyal and well-armed band of mercenaries to guard your site.

7. Start>Run>format C:\

8. Attack dogs, preferably rabid.

9. Use any version of Microsoft Frontpage to create your site. (This won't prevent people from viewing your source, but no one will want to steal it.)

10. Don't put your pages on the web. 


How To steal 'NO RIGHT CLICK' code :-

Use Left mouse and drag to highlite the code, (or try, cursor over code and triple left click)
then use keys [Ctrl + C] to copy and then paste [Ctrl + V] where you want it.

Continue Reading :)

How to disable text selection on web page

Posted by Unknown 0 comments
How to disable text selection on Blogger blog

Learn How to disable text selection on Blogger through this tutorial.In one of the previous publications, we presented a post on how to disable right click on the page of your Blogger blog to decrease the copyright violations from your readers “borrowing” your content for their own purposes. To go further in your content safeguarding efforts, you can make the next step, disabling text selection on your page entirely.

This hack was created by Dynamicdrive as well in the form of Javascript, and is also applicable to those bloggers who don’t like their content copied by others. If this concern is on top of your priorities list, then Copy the following code and Paste it to your blog template:


//<script type="text/javascript">

/***********************************************
* Disable Text Selection script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
genuinecontent.blogspot.com
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
target.style.MozUserSelect="none"
else //All other route (ie: Opera)
target.onmousedown=function(){return false} How to disable
target.style.cursor = "default"
}

//Sample usages
//disableSelection(document.body) //Disable text selection on entire body
//disableSelection(document.getElementById("mydiv")) //Disable text selection on element with id="mydiv"

</script>//

Continue Reading :)

How to disable right click on blogger blog

Posted by Unknown 0 comments
How to protect your blog content from being copied.Tutorial on how to disable right click on blogger blog.Have you noticed, that some web sites do not allow their visitors using right mouse click while pointer is on the blog area. This option is useful for the site and blog owners, who want to minimize the possibilities of the content direct copying to other blog posts.

Provided cross browser DHTML script from dynamic drive will help you achieving the same result on your own blog, preventing default right menu from popping up when right mouse is clicked. There are actually two options for this script are provided: Alert Option and Non-alert Option. If the Alert Script is enabled, if someone tries to execute Right click on the blog, then a Message, which can be customized per your desire, appears. If the Non-alert script is activated, then no message is displayed.

To setup this tool in your blog Copy the Following code and paste it to your blog by adding a new page element.

Message Alert Script:
/*genuinecontent.blogspot.com*/
<script language=JavaScript>
var message="Sorry!! No right click.";


function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
 </script>



Message Non-Alert Script: 

/*genuinecontent.blogspot.com*/
<script language=JavaScript>
var message="";
function clickIE() {if (document.all)
{(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.
all)) {
if (e.which==2||e.which==3) {(message);return
false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmo
usedown=clickNS;
}
else{document.onmouseup=clickNS;document.oncontextmenu
=clickIE;}
document.oncontextmenu=new Function("return false")
</script>

steps to use the code in Blogger blog: 

1.Go to Design tab
2.Click on add a gadget
3.Select HTML/Javascript
4.Paste the above code and save the template and you are done

Continue Reading :)

Train Running Status Live Train Enquiry Indian Railways

Posted by Unknown 0 comments
We normally go for Telephonic Enquiry to track or check the current status of running trains.As we know the Train Enquiry help line numbers are 139, 131, etc.,But we oftenly dial 139 .Through which you can get Train Timetable ,Live Running Train current Status, train late position, train location and schedules, Trains Expected Time of Arrival and expected time of Departure, timetable for running trains etc.

 In Case if you are not able to connect to these help lines you can now easily and quickly  check the train information on internet through TrainEnquiry.com website.This Indian Railway website is using AJAX.Here you can get fast updates about your running train current status across all the stations.You no longer have to remember train numbers now – just enter any two station names (like chennai to Ahmedabad) and it will bring all the trains available on that route.

CRIS, the IT wing of Indian Railways, has spotted improved version of the Train Enquiry website. This website will not only provide the running status of trains but will also help you track the exact location of trains across the country.The latest most astonishing feature of this beta versioned website is it now using RailRadar ,an interactive map technology where you can check or watch the status and location of trains.

  Check Live Status of Running Trains online


From TrainEnquiry website you can easily check live train enquiry and  track train position and exact location by just entering the train number or the station names,here you can track running trains between stations,can see exact position of the running trains across India.You can also see the Expected time of arrivals and departures ,Halt time ,or whether the train is running on right time or Late to a particular station.To see or get a complete walkthrough about usage of this beta versioned website,you can go to my new post TRACK RUNNING TRAIN STATUS 2012,where you can get step by step  process to check your running train position or location online. 

Continue Reading :)