|
|
|
Custom Website Design - 7 Steps to a More Professional Website
If you are trying to sell a product or service on your website, then it is important to make your site as professional as possible. You might think designing that your own website to look like a professional did so is a rather difficult proposition,...
How to Choose a Web Site Designer
It seems that everyone from the 15-year-old kid to their Grandmother is able to design a web site these days. You could also build the site yourself using a word processor or other web site program; however if you choose this route, plan on...
How to earn on offshore web design
Why offshore web design and development
Offshore web site design and development help to keep prices at least 3-5 times less, for example, average hourly rate of web development services in USA is $35-75; in UK - $25-50, in Ukraine - $5-20....
Top 10 Design Issues According To Web Marketing!
When it comes to designing your site, there are 2 ways you can ultimately go. a) Designing for yourself and no one else, b) Designing to fit web marketing and customer attracting methods. Here are the top 10 issues you should always consider: 1)...
Why Most Freelance Web Designers Fail or Work 60 Hour Weeks for Peanuts and Why
This article is aimed at web designers who struggle to find enough work or just have the occasional quiet period. It shows how you can make money with your web design skills any time you want. =======================================...
|
|
| |
|
|
|
|
Designing your website with change in mind.
We all know that our websites seem to take of live of their own.
As your site grows updating pages becomes more and more of a
task. This is where server side includes (SSI) can make your
site updates a lot easier and requires a lot less effort.
Visualize your page layout in sections. Most pages Usually
contain a top (header) section, a navigation system, content,
and then a footer (containing copyright info and date). Using
server side includes you can maintain each section in a separate
file making updating each section much easier. Instead of the
old method of updating each page of your site individually, you
can now update one file that will make the change for you on
every page that the include was on.
Most hosting companies support server side includes. You will
want to check with you host to make sure. Most Apache web-server
ate typically configured to parse files ending in .shtml. An
Apache server can be instructed to parse files with other
extensions by using an .htaccess file. You can update your
.htaccess file to parse .htm and .html file by adding in these
two commands.
AddType text/x-server-parsed-html .html
AddType text/x-server-parsed-html .htm
If you do not have an .htaccess file you can simply create a
file in your root directory named .htaccess and add the two
commands above and save the file.
Create each section of your page you wish to be used as an
include and save each section in a separate file and upload to
your server. These files can contain any regular html that you
wish to use. You can name these files with .txt extensions.
Now when creating a new content page you will want to use the
include command to include the
separate parts of your page.
For example: You are creating a page named your_content.htm. You
would start off with the normal html:
your_content
/* To include the top part of
your page. */
/* To include your
navigation. */
Content
/* To include bottom of page.
*/
| | | | | | |