11 May 2013

How to add CSS file in Joomla Template

To work your css file in joomla template ,
paste the following code before closing of head tag </head>
:


<link rel="stylesheet"
href="<?php echo $this->baseurl ?> /templates/YourTemplateName/css/template.css"
type="text/css" />


To know more about Joomla Template,


(If you found this article useful then share with your friends.)

How to Open Multiple links/websites at once with bat file

batch file
With a Batch file you can create a script that will open Multiple websites/links in just a single click . You need to write  a (dot).bat(batch) file to do this task.

Steps to do :
Step1: Go to Start->Run -> type "notepad" and click OK

Step2: Paste this following code :

@ECHO OFF
ECHO STARTING FIREFOX
START C:\"Program Files"\"Mozilla Firefox"\firefox.exe http://www.google.com/ http://www.facebook.com http://www.yahoo.com



Step 3 : Save it (Go to file-> Save ) with file name : quickstart.bat

NOTE: Make sure that your file ends with .bat or else it wont work.
Another important thing is dont give newline in between web address, just give a singe space in between them.


Run the file and hope it might work.


(If you found this article useful then share with your friends.)

How to remove Transcend USB write protected error

For Transcend Flash disk, if your pendrive showing write protected error while writing or deleting any file from pen drive then you must download mFormat utility from transcend website .

step 1: Visit Support | TranscendUSA.com

step 2: Search with your product model and select the product which is same or similar to your pendrive

step 3: Download mFormat utility . Enter your serial no. of your pen drive .
            Note: if you dont have a serial , then try with this no. 1456784523

step 4: Run the mFormat utility and format your pendrive .

Done.

Official Website of Transcend : www.TranscendUSA.com 

For more details , visit : kioskea.net


(If you found this article useful then share with your friends.)

04 May 2013

Difference between GPS and Assisted GPS

  • Standalone GPS operation uses radio signals from satellites alone.

(If you found this article useful then share with your friends.)

Check for crawled links done by google for search

To check your links of the website that google has done crawling and also indexed for search,
google logo
  1. Go to www.Google.com
  2. Type site:www.my_site_name.com 

    in the Google Search bar , and click Search button.
The search result will display the links that google has indexed in its search engine. This will help you to know about getting to know that google enlisted your links or not .

(If you found this article useful then share with your friends.)