Follow me on Google+

Featured 1

Curabitur et lectus vitae purus tincidunt laoreet sit amet ac ipsum. Proin tincidunt mattis nisi a scelerisque. Aliquam placerat dapibus eros non ullamcorper. Integer interdum ullamcorper venenatis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

Featured 2

Curabitur et lectus vitae purus tincidunt laoreet sit amet ac ipsum. Proin tincidunt mattis nisi a scelerisque. Aliquam placerat dapibus eros non ullamcorper. Integer interdum ullamcorper venenatis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

Featured 3

Curabitur et lectus vitae purus tincidunt laoreet sit amet ac ipsum. Proin tincidunt mattis nisi a scelerisque. Aliquam placerat dapibus eros non ullamcorper. Integer interdum ullamcorper venenatis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

Featured 4

Curabitur et lectus vitae purus tincidunt laoreet sit amet ac ipsum. Proin tincidunt mattis nisi a scelerisque. Aliquam placerat dapibus eros non ullamcorper. Integer interdum ullamcorper venenatis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

Featured 5

Curabitur et lectus vitae purus tincidunt laoreet sit amet ac ipsum. Proin tincidunt mattis nisi a scelerisque. Aliquam placerat dapibus eros non ullamcorper. Integer interdum ullamcorper venenatis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

Sunday 20 October 2013

How to Make Link In Blog With CSS




How to create a blog using the link to the CSS may be trivial rusty in the blogging world. But it was very much a beginner friends who ask in the comments or on the facebook group about how to make the link ....

So this time I will share how to create a link on the blog. We start from the simple first ya ....


How To Make A Link In Articles In Blogspot
To create a link in the article on Blogspot you need to do is highlight the text you want to change to relative links and do the procedure below ....

  • Click on the LINK icon row icon editor


  • Enter the URL of his open desire. Choose whether you want to open a link in a new window or not. Choose whether you want to also be a nofollow link or not .... Now click OK and you're done. (That does not give you Nofollow is positive for SEO point of destination to the page.) 


How To Make Link With simple HTML ....
Now we learn how to install link if not in the article. To link your HTML code simple enough to install the template or theme relatives.

HTML form the basis of a link
Below is a form of HTML from a link which involve a carrier, the href property and an anchor text ....

     <a href="http://www.example.com/"> Trial Site </ a>

Observe the rules are essentially:
  • You live http://www.example.com/ replace with your desired URL
  • You live transform the Trial Site is the anchor text with words that you want

.... then you will get the HTML structure of the link you need. 

How to Install HTML Link
After you create the link, structure, then it's time to install the link. For blogspot users, you can install it in various ways:

Installing the widget link using HTML / JAVASCRIPT
  • Now you just go to the menu layout on his blog dashboard
  • Click on the Add gadget that you want to put the link
  • Pop up will appear, please scroll down and select HTML / JAVASCRIPT
  • Enter html code from the last link in the gadget editor and click SAVE.


How to Make Link In Blog With CSS

  • Adjust the position of the gadget in the place you want

Installing Link In Template Structure
To do this then you should be experienced enough to edit the template. If you should not do back up the template, so that there is an alternative to recovery if you commit a fatal error ....

You need to do here is change the date quotation on HTML into single quotes.

     <a href='http://www.example.com/'> Trial Site </ a>

Then go to the menu and click the EDIT TEMPLATE HTML. Place the HTML code last edited at the place you want in the <body> ...


Making Display Settings To Link With CSS
If you do not have the template CSS settings for link, then the link will be displayed by default browser settings being used by the visitors. But if you are interested to make arrangements to view your links, then arrange for in the CSS ....

CSS code base from link
Must first be clarified before any platform of your website ..., because there are several methods to install CSS on your site. But whatever methods are CSS should be kept in a part of your template <head> ....

It should be noted that the operators to determine the value of a link is a. So form the basis of CSS is a link


a {
     property value regulator link
     }

For example, you want to make a red link, then enter a value as follows:

     a {
     color: # ff0000;
     }

There are a lot of properties that you can inject into brackets {....} flanking a setting above .... some of which are as listed below ....



Property set display link
Basically is the link text as well, so we can make arrangements for taking all the CSS text settings .... Consider some of the following properties:

  • font-family (eg Set font: Arial, Times New Roman, etc.)
  • font-size (large Set of letters)
  • font-weight (Set the thickness of the letters)
  • color (Set the font color using the color code)
  • text-decoration (Set the text variations, such as deciding what to wear ... the bottom line or not)
  • letter-spacing (distance between letters Set)
  • text-shadow (Set shadow on the letter)
Note that property names always end a colon (:) and the value of the property terminated semicolon (;) 
 

Practice Makes Link Management
Now I will try to make an appearance with CSS code link below:

     a {
     font-family: Times New Roman;
     font-size: 24px;
     font-weight: bold;
     color: red;
     text-decoration: underline;
     letter-spacing: 2px;
     text-shadow: 0px 0px 5px yellow;

     }

The result will look like this:

 


Creating Pseudo - Class on the LinksMaybe a lot of friends who are confused as to why there has not been visited link color as red , while blue highlighted ; when visited by gray , and after a visit is black , or other color variations ....All that could occur due to variations in pseudo - class that we provide. There are four pseudo - classes that you can use to create 4 different variations , namely :

    
a: link
    
a : hover
    
a: active
    
a: visitedAll you have to do is enter the property you want to change from the basic form of link after link subject to specific treatment .... Basic link in this case represented by the pseudo - class a: link ....See the following example :

    
a: link {
    
font -family : Times New Roman ;
    
font - size: 24px ;
    
font - weight: bold ;
    
color: red ;
    
text-decoration : underline ;
    
letter-spacing : 2px ;
    
text-shadow : 0px 0px 5px yellow ;
    
}
    
a: hover {
    
color: blue ;
    
}
    
a: active {
    
color: gray ;
    
}
    
a : visited {
    
color: black ;
    
}From the example above friends can see that I just want variety in terms of color . If I want to have variations in size , color and shadow , underline , etc. , then I just add it changes what I want ....


Setting the display link only in certain areas of the page
This can be done if the area is bounded by a class or id, and you have to know what class / id of the area .... For example:

     <div class="right sidebar ">
     ......
     ......
     </ div>

From the code above we can see that the area bounded by sidebarkanan class. Therefore class marked point in css, then the operator is Setting the display link only in certain areas of the page
This can be done if the area is bounded by a class or id, and you have to know what class / id of the area .... For example:

     <div class="right sidebar ">
     ......
     ......
     </ div>

From the code above we can see that the area bounded by sidebarkanan class. Therefore class marked point in css, then the operator is . Sidebarkanan


So now is the example code:

     . sidebarkanan a: link {
     font-family: Times New Roman;
     font-size: 24px;
     font-weight: bold;
     color: red;
     text-decoration: underline;
     letter-spacing: 2px;
     text-shadow: 0px 0px 5px yellow;

     }
     . sidebarkanan a: hover {
     color: blue;
     }
     . sidebarkanan a: active {
     color: gray;
     }
     . sidebarkanan a: visited {
     color: black;
     }

With this, it is only the links that are in the air div-class sidebar kanan that will be exposed to its influence ....
 



Put new arrangements CSS code
After you finish making this CSS code, where you can put it? For blogspot users, you just need to open the menu TEMPLATE> EDIT HTML and look for the code </ b: skin>. Put above code just above </ b: skin> then setting the previous link will be overwritten. Click SAVE TEMPLATE to see the results .....

As for the web in general, you can menarunya above code </ style> or in the external CSS file that organize the display of the page ....

Ok, that's the way it used to make links on the blog with a little play CSS, hopefully can help friends .... If there is a rather giddy with long explanation above, then do the plans alone (as the song box)

How to Use Typeitin - Installation Help Free Backlink Software


How to Use Typeitin - Installation Help Free Backlink Software

How to Use Typeitin - Currently more and more bloggers beginners who are struggling with mounting backlinks. Grievances often happens is tired and saturated install a backlink, because this is a recurring process. For those of you who have enough capital to this problem can try to put a premium software to install a backlink ....

For those of you who have enough financial limitation, the choice is too little. We can only make the process quite a bit lighter. So this time I want to introduce free software that can be used by the originator to make installation a little more relaxed backlinks. Software name is Typeitin.


Working Principle Typeitin 

You can put anything you want to type it into the system Typeitin. With one you can incorporate this type many times with just one click of a button that stores the data is typed.

How much friends can use to help install Typeitin backlinks, it relies heavily on the ability of friends typeitin set of variables. To understand how to use typeitin, do simulations mounting backlinks without using the mouse, and only using the keyboard alone .... If you can do it without using the mouse, it means typeitin can also do it.

What buttons do you press record you must ...


 Download and Install Typeitin

Previously please friends first download this software from the provider site (Click Here). File is quite small, only 1 MB. If you are finished please install the software to your computer. I will not describe how to install it again, because a blogger definitely will not problematic here.


Moderate Exercise Using Typeitin

Now do moderate exercise below to make you adept at using this Typeitin.

Making a New Group

Now open your typeitin already installed and right click on the group name. Select NEW GROUP

How to Use Typeitin - Installation Help Free Backlink Software

 
Enter the group name "BackLink" and click OK.
 
     How to Use Typeitin - Installation Help Free Backlink Software
 
 
Now you have successfully created a new group in your typeitin. (see picture below)
 
     How to Use Typeitin - Installation Help Free Backlink Software
 
 

 Edit button in the new group

Once a group is so new, it is time you make a new knob, and put into it the words you want to be typed by Typeitin when you click the button. So just live right click on the button and click 
EDIT BUTTON EXAMPLE

     How to Use Typeitin - Installation Help Free Backlink Software


 Editor window will appear like the picture below. Note 3 main elements in it, such as:
  1.  Button name
  2. Typing input column that you want
  3. Specialized functions available on the keyboard and other additional functions
  4. Close button
For simple input data you can ignore the third column, the new data will be used for complex input.

     How to Use Typeitin - Installation Help Free Backlink Software


Change Name button, Enter data typing, and click CLOSE. After you finish the first button. If you want a try please open Notepad and click the button you just created so that you understand how to work in the bottom of Typeitin help you install a backlink.

     How to Use Typeitin - Installation Help Free Backlink Software


 What you already know basic working principle?

Now make a few other buttons that you think will be required when entering backlink or fill out the registration form on the site. This will make your job as easy as clicking the buttons.

Add New Buttons

Please right click again on the button and select an existing NEW BUTTON

     How to Use Typeitin - Installation Help Free Backlink Software

Will soon open another dialog box similar to the previous, so you can simply enter your name, fill in typewriting, and click the CLOSE button. Continue to do this until you get the key you need.

     How to Use Typeitin - Installation Help Free Backlink Software
  

Now you need to do is just click on the column you need to fill and click the relevant column.

Making Functions Advanced Typeitin

To do this the friends must understand the functions of the Typeitin assistance. This function is divided on:
  • KEYS
  • FUNCTION
  • ADVANCED
  • FILE OPERATION
  • INTERNET
  •  MOUSE
You can access these functions when you edit or create a new knob. You need to do is click on the function you want, so the variable will be added to the column you are editing typewriting. See the example below, where I make the Paste function then then Tab 2 times then enter the URL of my blog. 

     How to Use Typeitin - Installation Help Free Backlink Software


If you are using a relatively slow computer , then between his functions can insert the { Delay 1000 } to prevent the failure of typing . The 1000 means 1000 milisecond alias 1 sec .
So you can use this key concept to comment on blogs that have that kind of comment form .
Automate TypeitinIf you already have a set of URLs that have exactly the same form , it can turn into typeitin knob one click and you can leave it up to a matter of hours and is itself free software that will make plain the process of typing to each page of the website .
Note: This technique only works in Firefox, and not in CHROME , CHROME respond because tab with different functions .... You should be using the 4 main functions in doing this :{ Ctrl } t to open a new tab{ Ctrl } f to open the search box{ Esc } to close the search box{ Ctrl w } to close the tab
How do I do it?

  •  Open two blank tab 
  •  Put them on the second blank tab your cursor in the address bar , and then start doing all processed using only the keyboard .
  •  Enter URL and press ENTER , wait a second until open webpage (provide appropriate delay your connection speed )
  • Looking the form commentary ; Here you should find out what writing always appears at the beginning of each embedded comment , whether it NAME: or EMAIL : or WEBSITE :
  • If you can do it without the mouse , then sequenced and paste Post as repeated by changing its URL address .

If this is too complicated for you , then take advantage of this software only with the medium functions as already described previously .... Hopefully you your fingers are not too kinky again in stick backlink ....
Note: This software is a trial within 30 days. If it 's later than you should edit the date on your computer to be the date on which the software is still active typeitin to be able to keep using it .