Company  |  Online Order  |  Policies  |  xBLOG  |  Help & Support  |  Contact

Entries in the ‘Web Design’ Category:

Dreamweaver Error Message

ASP. html: has configuration informaiton that is invalid.
ASP.NET.htm: has configuration informaiton that is invalid.
Date.htm: has configuration informaiton that is invalid.
JSP.htm: has configuration informaiton that is invalid.
PHP_MySQL.htm: has configuration informaiton that is invalid.
Spry.htm: has configuration informaiton that is invalid.
XSLT.htm: has configuration informaiton that is invalid.
In Windows XP, simply deleted the cache file for DreamWeaver:
WinFileCache-AD76BB20.dat in C:\Documents and [...]

Tags:

Leave a Comment


Favicon not showing in IE only FF

Make sure you follow the steps below:

Upload the icon is in the root directory and named it favicon.ico
Add <link rel=”shortcut icon” href=”favicon.ico” /> between the <head> section
Clear IE7 “Temporary Internet Files” and “History”
Refesh the website and you will see the result

Tags: , ,

Leave a Comment


Generate Huge Online Profits in Bad Economy

An ecommerce business is a great option if you are having problems selling in this economy. That is because an online business widens your customer base, gives you a higher potential of income, and is cheaper than a brick and mortar in so many ways.
There are two types of electronic commerce conducted via [...]

Tags:

Comments (1)


How to Choose a Web Design Company in Malaysia (Johor Bahru)

If you are doing business in Malaysia (especially in Kuala Lumpur, Selangor, Johor Bahru, or Penang) then I must tell you that you cannot really survive without the website. Hence it is really very important to note that website is a must for you and you will definitely have to get in touch with some [...]

Tags: ,

Comments (1)


7 Ways to Improve E-commerce Sales in Your Online Store (Without Reducing Your Prices)!

So here is a list of 7 things you can do to your website to increase sales without lowering your prices.
1) Simplify your shopping cart process
A sure fire way to lose a potential sale is make the shopping cart overly long, with way too many unnecessary fields. Ideally, you should try and condense your checkout [...]

Tags: ,

Comments (2)


How to make Youtube video autoplay and/or loop

Add the following preceded by a & after video URL:
~ For autoplay: Add autoplay=1 or autoplay=true
~ For looping: Add loop=1 or loop=true
Note: both could be added.
Examples
<object width=”480″ height=”385″><param name=”movie” value=”http://www.youtube.com/p/90C68D73786C56E3″ /><embed src=”http://www.youtube.com/p/90C68D73786C56E3&autoplay=1&loop=1&fmt=18″ type=”application/x-shockwave-flash” width=”480″ height=”385″></embed></object>

Tags: , ,

Leave a Comment


position:absolute next to a float may disappear in IE

In IE6 or IE7 if there is a floated layout and you have an absolute-positioned div in the mix sometimes it just won’t show up.
SOLUTION:
One easy way to fix the bug is to add an extra dummy <div> to “separating” the position:absolute from the float in the source code (either being between them, or wrapping [...]

Tags: , , ,

Comments (5)


CSS “Absolute” positioning screen resolution problem

If you position an element (an image, a table, or whatever) absolutely on your page, it will appear at the exact pixel you specify. Say I wanted a graphic to appear 46 pixels from the top of the page and 80 pixels in from the right, I could do it. The CSS code you’ll need [...]

Tags: , ,

Comments (6)


How to create a special list-menu in Dreamweaver

<form id=”two” action=”…” method=”post”>
<fieldset id=”opt”>
<legend>OPTIONS</legend>
<select name=”choice”>
<option selected=”selected” label=”none” value=”none”>
none
</option>
<optgroup label=”Group 1″>
<option label=”cg1a” value=”val_1a”>Selection group 1a
</option>
<option label=”cg1b” value=”val_1b”>Selection group 1b
</option>
<option label=”cg1c” value=”val_1c”>Selection group 1c
</option>
</optgroup>
<optgroup label=”Group 2″>
<option label=”cg2a” value=”val_2a”>Selection group 2a
</option>
<option label=”cg2b” value=”val_2a”>Selection group 2b
</option>
</optgroup>
<optgroup label=”Group 3″>
<option label=”cg3a” value=”val_3a”>Selection group 3a
</option>
<option label=”cg3a” value=”val_3a”>Selection group 3b
</option>
</optgroup>
</select>
</fieldset>
</form>

Tags: , , ,

Leave a Comment


10 Security Tips for Wordpress Users

1. Nobody is allowed to search the entire server

Do NOT use this search code in the search.php

<?php echo $_SERVER ['PHP_SELF']; ?>

Nobody should be allowed to search your entire server. Use this one instead:

<?php bloginfo (’home’); ?>

Block WP- folders from being indexed by search engines, the best way to block them in your robots.txt file. Add [...]

Tags: ,

Comments (3)