International shipping has arrived. You requested it... we delivered. There are many considerations which you should be aware of when shipping overseas. This article will describe how you can enable your Quick Shopping Cart to ship internationally.
The following is a checklist to consider when configuring International Shipping:
Configure which countries you will support (Merchant Supported Countries).
This is the fundamental step that drives others.
Exclude products that will not or cannot ship to foreign countries.
Configure a Shipping provider capable of shipping internationally.
Review any "Free Shipping" coupons to see if they apply to other countries.
Preview and PublishEach of these items is described below.
You (the Merchant) have the power to pick and choose which countries you want to sell to. To pick your countries, select Preferences from the Storefront menu and go to the "International Shipping" section.
The countries in the Available list are available for your site to support. The countries in the Selected list are the countries that your site currently supports. The Selected countries appear in the Country drop-down control on the Billing/Shipping Addresses page in your storefront's checkout process.
Add Countries by selecting one or more countries in the Available list and click [>>] to push these into the Selected pane. To remove countries, select one or more countries in the Selected pane and click the [<<] button. To select more than one country at a time, hold down the Control (Ctrl) key on your keyboard while you click on countries in the list.
Click the Save button at the bottom of the page to save the countries you have selected. You have now configured the countries to which your site can ship.
You can always test your settings before you publish by opening the Preview window. This allows you to see what these new settings will look like before you publish. After publishing, your site can ship to the new countries.
Depending on what you sell, you may not want to ship, or are prohibited from shipping, some of your products to certain countries. Quick Shopping Cart provides the ability for you to prevent products from being shipped to certain countries.
Select Products from the Catalog menu and then click the product name that you want to edit. Go to the International Shipping section and click the Modify selected countries link to display the list of countries that your site supports.
After clicking this link, you can select countries where this product should not be allowed to ship. After publishing your selections, your storefront prevents customers from shipping this product to the excluded countries.
Remember to press the Save button to store your settings.
In order to actually get the products to the international customers, you will need to configure a shipping carrier that is capable of delivering your product to the customer. Currently, there are two shipping options that support international shipping: UPS and Custom. To modify your shipping options, select Shipping from the Processing menu and then select Edit or Enable next to the option you want to modify.
In addition to completing the normal UPS configuration, you must select one or more of the following International UPS Services:
In addition to completing the normal Custom Shipping configuration, you can apply surcharges for specific countries or regions to provide a more granular level of control over shipping charges. The following picture shows how you can add surcharges to specific countries or regions to cover more expensive destinations than those in the continental US.
If you have "Custom" Shipping enabled, some Free Shipping coupons can be very costly if you ship from the US and are shipping to another country. These coupons by default will not apply to other countries unless you enable them.
Quick Shopping Cart allows you to apply Free Shipping coupons to non-US countries. After ensuring you have Custom shipping enabled, select Coupons from the Promotions menu and then click the Add New Coupon link.
After all of your settings have been saved and published, your International Shipping configuration is complete. There are some changes to the checkout process to be aware of.
When the shopper selects a different Country in the address page, the following changes automatically occur:
If you excluded any products from shipping to certain countries, these countries are identified on the product's detail page:
As a reminder to the shopper, these same countries are identified in the customer's Shopping Cart:
If the customer attempts to ship a product to a country that you created an exclusion for on the Products page, a validation error will appear at the top of the page and will not allow the customer to proceed with the purchase until the items are removed.
As with all other Quick Shopping Cart functions, you are encouraged to preview the changes frequently before publishing. You can preview your work by either clicking the [Preview] button in the upper right corner or refreshing (F5 Key) the preview window if it is already open. When you feel comfortable with the configuration, publish.
Quick Shopping Cart will periodically add countries to its list of Available countries in the "International Shipping" section on the Storefront > Preferences page. If you visit this page, you may notice new countries that you can select for shipping.
This is the second article in a series for Power Users and Web Site Designers on one of Quick Shopping Cart's newest features: Advanced CSS. Using the Advanced CSS feature, you can override and extend almost any style in your chosen template, ensuring that your storefront truly reflects your desires and the needs of your customers.
A question we frequently receive is, "How can I change my site header to the same image as my other website?" In this article, we show you how to customize your header background image, header font styles, and more. If you haven't read the first article in this series, you can review the information about using the Advanced CSS feature.
You may have another site with a custom header that you or your designer have created, and now you'd like to use that header image with your storefront. Let's look at how to make this simple change.
Here is the before/after sample:
The top example is the header image that comes with the theme we've selected (in this case, Retro Sign - A). The bottom example shows how we want the header to look. We've tweaked the main text and replaced the background image with one of our own making.
Here's the CSS code:
#header-content {
background-image: url(sample_header.png);
height: 118px;
}
.titles h1.company-name {
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: normal;
}
The first block sets the header’s background image to our new sample_header image, and then adjusts the height to accommodate the new design.
The second block targets the company name text in the header and changes it to a serif font family, setting it apart from the original design.
So far, we've focused on how to change the appearance of certain features in Quick Shopping Cart. You can also completely remove a component from your site. You can accomplish this action by selectively hiding parts of the storefront using CSS. However, using this feature is confusing if you forget that you've hidden part of the site.
The basic technique to hide a component is to add a CSS “display:none;” style line for the component you'd like to hide. For example, here is the CSS to hide the breadcrumbs:
#breadcrumbs {
display: none;
}
With this style line, customers don’t see the breadcrumbs when navigating through the site - there won't even be an empty space where they used to be. It's like they never existed. Here's another example:
.category-list {
display: none;
}
This line hides the list of categories in your sidebar.
We’ve provided a few examples of storefront components that can be customized using the new Advanced CSS features in Quick Shopping Cart, but the possibilities for customization are countless To dive deeper into what can be done with CSS, you need to look at the storefront code to see what’s going on Fortunately, there are tools to help you look at the storefront code.
X-Ray Vision
The Firefox Web browser supports a wide range of extensions to make designing and developing your Web site easier. One example is Firebug, an extension that lets you see the HTML, CSS, and Javascript that make up the page.
As an example, here’s the Product Details page with the product name highlighted as seen with Firebug (click to enlarge view).
The left pane shows the HTML structure with the selected element highlighted. The right panel shows the CSS code for that element, allowing you to see how the element is styled. You can even experiment with the look by editing the styles in Firebug in real time. The sample site we used for this and the previous article was built using this process. We highlighted an element to customize, experimented with the styles, and then wrote it into our Advanced CSS.
Learn more:
In parts 1 and 2 of this series, we introduced some powerful tools to help you dig into your storefront. We looked at techniques to customize different parts of your storefront, including background images, custom buttons, custom header, and hiding parts of the page.
Want more? Add a comment letting us know what other parts of your storefront you’d like to polish up, and we’ll see about addressing the request in a future article.


.product-detail-header h2 {
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: normal;
font-size: 2.5em;
background-image: url(rem_store_grad.png);
background-repeat: repeat-x;
background-position: bottom left;
padding-bottom: 10px;
border-bottom: 2px solid #552906;
}
You can host your background image anywhere that is accessible from the public web, such as a WebSite Tonight account, an Online Photo Filer gallery, or any public Web host. To get the address (URL) for your image, view the image in your Web browser, right-click, and select either "Properties" (Internet Explorer) or "Copy Image Location" (Firefox). In Explorer, select and copy the URL for the image, then close the properties window.
You can now use that address as the value for the "url" in the sample code above.
We’re frequently asked, "How can I customize my storefront ‘Add To Cart’ buttons? I don't like the browser buttons." Well, here is a technique for creating a fast-loading, image-based button that includes a mouse-over highlight in modern browsers.
First, a useful before/after:
On the left, you can see the default look of the Add To Cart buttons (in Firefox on Windows). On the right, the new look with normal and hover (mouse-over) states side-by-side.
That's one image, and it has both versions of the button. We'll use a CSS technique to change which part of the image is shown when the customer moves the mouse over the button, although this is dependent on the Web browser used to view it.
This is the CSS code that renders the new buttons:
/*
input.content-product-button is the add-to-cart button on product listings
.product-options-table input.btn is the add-to-cart button on the product detail page
.featured-item-button is the add-to-cart button on the featured product
*/
input.content-product-button,
.product-options-table input.btn,
.featured-item-button {
height: 25px;
width: 107px;
background-color: transparent;
background-image: url(sample_add_cart.gif);
background-repeat: no-repeat;
background-position: 0 0;
font-size: 0px;
border: none;
}
/*
The mouse-over feature works in IE7/Windows, Safari/Mac, and Firefox, but not IE6
*/
input.content-product-button:hover,
.product-options-table .btn:hover,
.featured-item-button:hover {
background-position: 0 -25px;
}
The tricky part of this code is that last style line. By setting the background-position to -25px, we move the image up to show the darker hover state when the customer hovers over the button. With this style, the browser only needs to load a single image, which can help speed page loads. Also, we set the width and height of the button to the size of the button image, and set the font-size to 0 (to hide the default text in the button).
In our next article, we look at overriding fonts and colors for specific elements, and see how to use your custom CSS to move elements on the page.





If you purchased your WST site in a different Go Daddy account than the account with which you purchased your QSC site, your WST site will not display in the WST Account menu. To remedy this issue, in the Page menu, select Custom, and enter the URL that points to your published WST site. Click Save, and then publish your QSC site.
Your WST and QSC accounts now display the same template and are linked. If your users click Store on your Web site, they are taken to your QSC storefront; and if they click Home Page on the storefront, they are returned to your Web site. This same technique could also be used, for example, to link from the WST site to your QSC Contact page.

Quick Shopping Cart now supports favicons: the cool little images that display in the address bar and browser tabs when you go to a Web site. For example, Google’s favicon is a "G" icon that displays in the address bar. Also, these icons show up when saved to favorites and can show up in Internet Explorer (IE) if you save them to your desktop.
Now that this feature exists, you can create and upload an image that represents your site. Since IE only supports icon ".ico" types, we recommend you create an icon file that's 16x16 in size.
If you already have an icon, you can simply upload that image to QSC and publish. If you have a WebSite Tonight site, you may already have a usable icon. Just go to your site's root and append "/favicon.ico" (for example: www.coolexample.com/favicon.ico). If the browser displays an image, right-click that image, and save it to your file system.
Follow these suggestions to help ensure success when creating a favicon:
Create with an icon editor.
Create a clean 16x16 .ico file.
Use Transparent Background
Publish icon files infrequently.
Greetings. I want to take a moment to introduce two new features available in Quick Shopping Cart® 2.3: Advanced CSS and Saved Skins. The goal of these two features is to allow you greater control and flexibility over the look and feel of your site.
The Advanced cascading style sheets (CSS) feature provides you with a new level of customization for your cart. With it, you can add your own CSS styling throughout your site. This advanced feature goes beyond the level of customization allowed by the “Customize Colors and Fonts” feature. However, to use it, you must be familiar with CSS. You can start learning about CSS at www.w3schools.com/css/default.asp
One great way to get started in the use of advanced CSS is to customize your background with an image. Instead of a simple solid background color, you can have any image accessible via a URL as the background for your site. The basic syntax for this is:
body
{
background-image: url(image location);
}
There are many other options to style the background image, as well. For example, to make the image repeat, add the background-repeat option To lock the background in place relevant to the actual content on your pages, use the background-attachment option. You can also combine styles. For example, to have a site with a background image that repeats and doesn’t scroll, you would add the following lines to your advanced CSS:
body
{
background-image: url(image location);
background-repeat: repeat;
background-attachment: fixed;
}
Be aware that if you have SSL enabled and choose to customize your background in this way, your customers may see a security message stating that the page contains secure and insecure items when they go to check out. This behavior is browser specific and cannot be controlled by Quick Shopping Cart®. One possible solution to this situation is to ensure that the image URL is secure by verifying its URL begins with https instead of http. This is just one example of the many customizations you’ll be able to achieve using the advanced CSS feature.
Another new QSC feature is My Saved Skins, which allows you to save snapshots of your site's graphical layout. When you create a new skin, your site's template, color theme, category page style, product page style, custom fonts and colors, and advanced CSS are backed up. Creating skins gives you the ability to confidently try new look and feel options, since you can always reload a previously saved skin. Moreover, you can save up to 50 skins, so you can build different skins for specific occasions. Using the My Saved Skins manager, you can create new skins, apply a skin, update an existing skin, rename a skin, and delete a skin.
Remember, saving a skin takes a snapshot of your site's current settings. The skin’s settings do not change unless you overwrite it using the My Saved Skins manager. When you overwrite a skin, all settings for that skin are replaced with the site's current settings. So when using this new tool, back up your current settings and explore the many new templates we’ve added.