it is a little more difficult to effectively create a custom header for stretch templates as the width of such templates is fluid. However, with a few simple tricks, you can easily create a unique, clickable header for your blog which will look great no matter how wide (or narrow) the browser viewing your blog.

I’m going to use the Minima Stretch template, though I
will also include notes applicable t
o the Denim Stretch template too.

The best way to use a custom header for a stretch template…
…is to create a logo or header image with a block background color !

This ensures that your header wi
ll appear normally in any size of browser window, whether this is a narrow monitor or widescreen laptop.

An effective method is to use a logo or badge, alongside your blogs’ title. If you ensure the width of the whole “banner ” is no wider than around 700px, you can be certain that the whole header will display properly in older browsers.

I used Photoshop to create the header for this demonstration, though you could just as easily use GiMP, CorelDraw or your favorite image editing program10.
Firstly I created a background which is 700 pixels wide and 100px tall.

You can make your own header banner taller than this if you prefer.

Then, I filled the background with a dark red color (hex value: #333333).

Ensure you have the hex value of your background color as you will need to use this value later on in this tutorial.

Secondly, I added the blog title in white text11 with a little shading to ensure this stands out from the background (there are loads of excellent free fonts available from DaFont12).

I aligned this title to the right o
f the image, leaving space to the left so I can add a logo afterwards.
Here is what the header banner looks like at this stage:
Now

Now I’d like to add a contrasting logo to the left of the header title, which will add some personality to the head section of the design. If you already have your own logo, you can simply paste this beside your header. However, for this template I’m going to use a badge style logo created using the free service from FreshBadge.com13. I created a badge using variants of red, and changed the size to 70pixels in height. Then I pasted this badge into my header banner, to the left of the title text, and saved the completed banner in GIF format:


Upload your image to Blogger To use this banner as the header, we will upload this to Blogger using the in-built image upload feature. Simply go to Template>Page Elements in your Blogger dashboards and click on the “edit” link in the header widget.

Choose to upload a new image from your computer and browse to the location where you have saved your custom banner design.

Upload this to Blogger, and check the radio box
which says “Use instead of title and description”.

This ensures that your blog’s name will still appear in the top right of your browser, but nothing will interfere with the appearance of your new header banner. After uploading my header to Blogger, the template appears like this:


Blend the banner with the background of the header So far, the header banner doesn’t blend with the background of the header at all. We need to add a background color to the header section which is the same value as the background of our banner, which ensures it blends seamlessly.

To do this, go to Template>Edit HTML in your blogger dashboard, and find the following section of code near the beginning of the section: #header -wrapper { margin:0 2% 10px;
border:1px solid $bordercolor; } Here we will add a background color with the same hex value as the background of the banner (in my example, this is #333333). So add the line highlighted in red to this section of code, substituting the hex value for that of your own banner background color: #header -wrapper { margin:0 2% 10px; background: #333333; border:1px solid $bordercolor; } Now, my demonstration template looks like this:



Now this is looking better, wht say........................................
Links to this post

Welcome to our

WWW.MAKEMYHOST.COM


We understand that quality of linux hosting, dedicated hosting, eMail hosting customer support is mission critical for our mutual success and we will always offer live in-house support 24x7x365 even on holidays.

Our average support ticket resolution is 15 minutes and immediate responses are very common. We are dedicated to taking away the headache of administering your own servers, thus allowing you to focus entirely on running your business with unlimited growth potential.

Along with providing quality and reliable Linux hosting solutions we offer full range of other web hosting services, including: dedicated hosting, Mail hosting.

Our special security packages will help to secure the server 100% hack free, Spam free, Ddos free We are absolutely sure that such winning combination of price, quality and reliability of Linux hosting ,dedicated hosting and eMail hosting services you won’t be able to find anywhere else in the industry.


Browse our web hosting areas and choose the best plan that will suit all your needs. MakeMyHost values every single client we have.

We listen and we want to hear from you.
If you have any questions regarding any of our linux hosting or dedicated hosting, eMail hosting – feel free to contact us.Thank you for choosing MakeMyHost your web hosting provider!
Links to this post
The mkdir (make directory) command is used to create directories.

Example
[ Steve@localhost Steve ] $ mkdir prog-files
[ Steve@localhost Steve ] $ -

The sub-directory, prog-files, is created under the current directory. However, the new directory does not become the current directory. Complete path names can be specified with mkdir.

Example

[ Steve@localhost Steve ] $ mkdir /tmp/prog-files
[ Steve@localhost Steve ] $ _

In the above example, the directory, prog-files, is created under the /tmp directory.
Links to this post
Identifying the Current Directory Path


The pwd (print working directory) command is used to display the full path name of the current directory.


Example
[ Steve@localhost Steve] $ pwd
/home/Steve
[ Steve@localhostb Steve] $ _

Here, /home/Steve is the directory in which the user is currently working.


Changing the Current Directory

The cd (change directory) command changes the current directory to the directory specified.

Assume that Steve has logged in and has given the following command:

Example
[Steve@localhost Steve ] $ pwd
/home/Steve
[ Steve@localhost Steve] $ cd /usr/bin
[ Steve@localhost Steve] $ pwd
/usr/bin
[ Steve@localhost Steve] $ _

Note that the complete path name has been specified with the cd command. Linux also allows the use of relative path names with commands. Let' s look at an example.

Example

[ Steve@localhost /usr ] $ pwd
/usr
[ Steve@localhost /usr ] $ cd bin
[ Steve@localhost bin] $ pwd
/usr/bin
[ Steve@localhost bin ] $ _

In the above example, the user, Steve, changed the working directory from /usr to the directory, /usr/bin. However, he did not mention the full path of the bin directory. Since bin is a sub-directory in the current working directory, Steve just specified the directory name and Linux interpreted that the directory is under the current directory.

You can also use the .. (double dot) option with the cd command to move to the parent directory of your current directory. For example, Steve can enter the following command after logging in, to change to the parent directory of his HOME directory.

Example

[ Steve@localhost Steve ] $ pwd
/home/Steve
[ Steve@localhost Steve ] $ cd . .
[ Steve@localhost /home ] $ pwd
/home
[ Steve@localhost /home ] $ cd . .
[ Steve@localhost / ] $ pwd
/
[ Steve@localhost / ] $ _

The two dots refere to the parent directory of the current directory. Note that there has to be a space between cd and two dots, but not between the dots.

The cd command without any path name always takes a user back to the HOME directory.

Example

[ Steve@localhost bin ] $ pwd
/usr/bin
[ Steve@localhost bin ] $ cd
[ Steve@localhost Steve ] $ pwd
/home/Steve
[ Steve@localhost Steve] $ _

Recollect that the tilde ( - ) sign is used to denote the full path for your HOME directory. Let' s say there are two directories, baseball and basketball, under Steve' s HOME directory.

Example
[ Steve@localhost vga ] $ pwd
/etc/vga
[ Steve@localhost vga ] $ cd -/baseball
[ Steve@localhost baseball ] $ pwd
/home/Steve/baseball
[ Steve@localhost baseball ] $ cd -
[ Steve@localhost Steve ] $ pwd
/home/Steve
[ Steve@localhost Steve ] $ _

You can use a combination of all the above options in your cd command. Let us look at an example, if Steve wants to move from the directory data1 to data2, he would issue the following cd command.

Example
[ Steve@localhost data1 ] $ pwd
/home/steve/data1
[ Steve@localhost data1 ] $ cd . . /data2
[ Steve@localhost data2 ] $ pwd
/home/steve/data2
[ Steve@localhost data2 ] $ _




Links to this post
The is command is used to display the names of the files and sub-directories in a directory.

Example

[ Steve@localhost Steve ] $ 1s /home/Steve
DEADJOE X baseball comm tennis
Desktop a.out basketball program.cc
[ Steve@localhost Steve ] $ _

In the above example , all the files and directories under the directory named Steve are listed. If the files and directories under the current directory are to be listed, it is optional to specify the directory name with 1s.

In the above output, you are shown the file names but not the types of files. The -1 option, when used with 1s displays a detailed list of files and directories
Links to this post
The rmdir (remove directory) command removes the directory specified.

Example

[ Steve@localhost Steve ] $ rmdir prog-files
[ Steve@localhost Steve ] $ _

Here, the prog-files directory is deleted.

A directory can be deleted using the rmdir command only if it is:

1) Empty (does not contain files or sub-directories)

2) Not the current directory

Complete path names may also be specified with rmdir.

Example

[ Steve@localhost Steve] $ rmdir /home/Steve/tennis
[ Steve@localhost Steve ] $ _

The above command removes the tennis directory, which is located in Steve' s HOME directory.
Links to this post
System Administrator

The System Administrator (SA) is primarily responsible for the smooth operation of the system. it is the SA' s job to switch on the system console (the machine on which the operating system resides, also known as the server machine).

The SA also creates users and groups of suers for the system, and takes backups to prevent loss of data dure to system breakdown. In Linux, the SA is also known as the root user. The SA has all the rights for the Linux system.


File owner

The user who creates a file is said to be the owner of that file. The owner of afile can perform any operation on that file: copying, deleting, and editing.

Group Owner

Consider the following situation

A project of five people from the Dynasoft Consultants Inc, is working on a software development project for a private detective agency. An analyst heads the team. The other four members are programmers. The team is working on a Linux system.

Each programmer has been given a few programs to develop. The data provided by the detective agency is of a highly confidential nature, and so the data file has been created in the analyst' s HOME directory.

One programmer may have to link (join) a program to another programmer' s program in order to test the program.

In this situation, each programmer is the File Owner of his or her own program files. Each program, however, also belongs to the other programmers, so that they can use it for linking to the file or directly access to the file.

The project team of five users is said to be the Group Owner for the file. In Linux, it is possible to define the users who willl belong to a group. A group of users are also given a name, just as a user is given a name.


Other Users

In the example of the dynasoft consultants Inc; all the users of the system who are not members of the project group are referred to as Other Users for the files of that group.

Other Users who do not belong to the particular group. For example, the users belonging to the finance department could be treated as Other Users for the payroll department.
Links to this post