Printer Friendly Version
Email this thread to a friend
|
Featured Web Site Template |
|
There are 0 guests and 1 members in the forums right now.
Reflects user activity within the last 5 minutes
|
|
| Member |
Message |
cleung
Joined: Nov 22, 2004
# Posts: 42
|
Posted: 2005-Jan-21 23:39
I recently launched my website which was created in Dreamweaver. I also use a shopping cart system from a supplier where I cut and paste HTML code into various pages on my website in order for it to utilize this shopping cart system. When I use the browser checker on Dreamweaver, it results in errors where the BORDER and the SRC within the Input tag is not supported by IE and the BORDER is not supported by Netscape. The line that is referred is as follows;
<INPUT BORDER="0" SRC="http://www2.clicshop.com/Template/ClicShop/Eng/GenereMagasin/Template1/Images/item_add.gif" TYPE="IMAGE"><BR>
Is this a potential major problem? So far, customers have been able to order successfully but I don't know if there are any visitors out there that haven't been able to because of this error.
Can somebody please offer some input?
|
 |
paulhiles
Joined: May 18, 2004
# Posts: 16
|
Posted: 2005-Jan-31 16:06
You could store all your image information into a class in your stylesheet, including the path to the URL, the zero border, etc.
input.btn-add {
background-image: (path-to-image);
background-repeat: no-repeat;
border: 0;
}
This would remove the problem of the "src" and "border" errors. Then you could simply assign the class to your input tag.
<input type="image" class="btn-add" value="Add item">
|
 |
g1smd
Staff
Joined: Jul 28, 2002
# Posts: 10418
|
Posted: 2005-Feb-01 14:42
To avoid having every input tag needing to have a class attached, give the class to the form and style the element this way:
.classname input { the style here; }
Cuts down on bloat.
<form class="classname">...
|
 |
g1smd
Staff
Joined: Jul 28, 2002
# Posts: 10418
|
Posted: 2005-Feb-15 21:23
How are you getting on with this?
|
 |
cleung
Joined: Nov 22, 2004
# Posts: 42
|
Posted: 2005-Feb-15 21:40
Many thanks for all the comments to my question so far. I have to admit that most of this is still above my head as I'm not a programmer. I did call up tech support at the company that supplies my shopping cart and hosts my website. They claim that even though Dreamweaver seems to be putting on that not supported error, the order process for the shopping cart does seem to work okay as I have had orders. I did test orders myself and they seem to go through. I've read other posts and it seems that Dreamweaver sometimes does funny things even if everything will still work.
|
 |
You are not permitted to post messages in this forum or topic, because of one or more of the following reasons:
- You have not yet logged in, or registered properly as a member
- You are a member, but no longer have posting rights.
- This is a private forum, for which you do not have permissions.
If you are a recent member, it's possible that you simply have not yet confirmed your account. Please
check your email for a message entitled 'JimWorld Forums: Confirm Your Account' and follow the instructions
contained within.
If you cannot find this message, click here to Re-Send it.
|
If you are still experiencing problem, please read the
Login Assistance
Article for some advice on what may be causing your login not to work properly.
|
Switch to Advanced Editor and ...
Create a New Topic
or Reply to this Thread
|
|