|
|
|
Before You Redesign Your Web Site...
It's a familiar story. Your Web site was designed around the time when an upstart named Google was just getting their foot in the door of the Search Engine market. At the time, it was a great Web site. It might have even had some cool new...
Discover How To Make Your Web Design Easier
Whenever I thought of web design my face would frown, I just
hated the fact that I had to do any kind of web design. I just
couldn't see why web design was simple for other and not for me.
Well, that all changed when I discovered this simple...
Key Components of Effective Web Design
The key to effective web design is to convert visitors of your
web site into buyers. There are numerous ways to do this, the
first being the organization of you web site. Organization and
allowing the visitor to easily navigate throughout your...
The Advantages of Web Page Template Designs: Tips and Guides on Which To Choose
Building and creating a website is a nightmarish task especially
if you don't have the slightest idea on what you are suppose to
do. Staring on an empty screen and waiting for some creative
ideas to pop up can be quite frustrating and...
Website Design vs. Function
Easily, one of the biggest mistakes webmasters make when first starting out on the web is in the design of their site. This is extremely understandable, considering that, in the brick and mortar world, a business's success is often dependent on it's...
|
|
| |
|
|
|
|
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.
*/
| | | | | | |