WEB DESIGN AND MARKETING-FOR BUSINESS WEBSITES

WEB DESIGN FOR BUSINESS WEBSITES

At a minimum, users should see a thumbnail
of the product. This does not have to be elaborate.
 To avoid forcing users to squint, make sure that
 the image is at least 150 pixels wide.

Providing a larger image when the thumbnail is
 clicked is almost always a good idea. This
higher-resolution version should appear in a
 new browser window, not because this
constitutes better usability which it really doesn’t,
 but because people expect and accept this
functionality that has been perpetuated by
thousands of websites. This window can be
loaded several different ways:

1.The simplest method involves adding the targetattribute to the anchor tag, such as
<a href="/images/tractor-engine_large.jpg" title="View a higher resolution
photo" target="_blank"><img src="/images/tractor-engine_thumbnail.jpg
alt="tractor engine" /></a>. This technique avoids JavaScript, which might be

disabled; the disadvantage is that the targetattribute is deprecated in XHTML 1.0
and beyond, and if included, will prevent the page’s markup from passing the W3C
validator.

2.To open a new window while keeping the page valid, many developers use
JavaScript. A basic version would look like this: <a href="/images/tractor-engine_
large.jpg" onclick="window.open(this.href); return false;"><img
src="/images/tractor-engine_thumbnail.jpg" alt="tractor engine" /></a>.

3.The previous JavaScript examples only load the images in a new window, but the
language also has the power to dictate the design of the browser window, such as
the width and height, whether the navigation items are visible, and whether the
window is resizable. Building off the previous example, a simple version might look
like  <a href="/images/tractor-engine_large.jpg" onclick="window.open
(this.href, 'popupwindow', 'width=300,height=400,scrollbars,resizable');
return false;" ><img src="/images/tractor-engine_thumbnail.jpg
alt="tractor engine" /></a>.

4.There are also many external scripts that handle this functionality as well. Roger
Johansson, author of the web design site 456 Berea Street, wrote a simple script
that loads any link with a rel="external"attribute in a new window, relegating the
behavior to an external file.
1
Lightbox, another good option covered later, is a
piece of JavaScript that loads images into a <div>that overlaps the main page. Both
ofthese prevent the JavaScript from being embedded in the HTML, so the page size
is kept small and the HTML remains semantically strong.
Generally, opening links in new windows is regarded as bad usability and accessibility practice, but in this case, users expect a thumbnail to open a new window with a larger image.
The one and only concrete rule about this entire discussion is to nevermake a thumbnail
link to an image that is not bigger. If a higher-resolution version with increased detail is
unavailable, do not link the thumbnail.
Related Posts:
  • WEB DESIGN AND MARKETING-FOR BUSINESS WEBSITES WEB DESIGN FOR BUSINESS WEBSITES At a minimum, users should see a thumbnail of the product. This does not have to be elaborate.  To avoid forcing users to squint, make sure that  the image is at least 150 pixels w… Read More
  • Publishing Your Web Pages-AdSense-how-to Your approach to creating Web pages for a small Web site should be similar to your approach to creating a single Web home page. Each page should stand alone as a worthwhile place for your Web visitors to spend time, learn so… Read More
  • Php-Configuration Control Through .htaccess The .htaccessfile is very powerful and can control more than just URL structure. For instance, you can control PHP configuration options using the .htaccessfile. To increase the memory allotted to PHP use this command: php_v… Read More
  • AdSense for Video AdSense for Video AdSense for Video is the newest addition  to the video family for AdSense. So new, in fact, that it’s still in beta testing,  and is only available to a certain number of participants. To be se… Read More
  • How creating Your Web Pages It’s typical, when designing a Web site, to use a top-down approach and to start by thinking a lot about navigation, organization,  navigation, and so on. Your approach to creating Web pages  for a small Web site … Read More
  • Get Free Website Templates Get Free Website Templates freewebtemplates.com - Free Web Templates www.freewebtemplates.com A huge collection of 3400+ free website templates,  WP themes and more at the biggest community-driven &nbs… Read More
  • Makes a Web server fast-for website businesses A Web server is usually rated by the number ofconnections— brief communication sessionsbetween two machines — that it can handle ina given period of time. The number of connections that the server handles depends on howqu… Read More
  • Why Flickr forward-tools As a visitor to Flickr, you can have an awful lot of fun. You can search through photos in a bunch of different  ways, from the sensible to the quirky. But you get the most out of Flickr by using it to store and show o… Read More
  • How ta Starting a Blog-Make Your Blog Work For You Making money and driving traffic to your blog To begin, you will create a new Blogger blog; review and navigate the Dashboard;  and learn how to create, edit, delete, and schedule posts. Posts are the substance of a bl… Read More
  • Automating Functions with cron Jobs Automating Functions with cron Jobs Think of cronas being short for chronology, and it will help you see that it is for jobs that are performed automatically on a fixed time  schedule by theserver’s internal clock. &nb… Read More
  • Create a Website-web design tips and more Create a Website and more  When  think about building your website,you should register a domain name. A domain name is the thing that looks like this: "mydomain.com".  home page   about page   co… Read More
  • Website Designing Promotion com for adsense Website Designing Promotion & SEO Services SORRY! If you are the owner of this website, please contact your hosting provider: webmaster@websitedesigningpromotion.com. It is possible you have reach… Read More
  • Building a Marketing-Effective Web Site Building a Marketing-Effective Web Site presentation of information affects emotional  response and thus influencesbuying decisions.  Designers ask about your target audiences to be sure to select or create appr… Read More
  • Online creating graphics tools-offer images and image conversions Web tools-offer images and image conversions Great! But how do you create them and get them in the right  format GIF or JPEG? Fortunately, creating the graphics you want, or finding some to use, is pretty easy. The e… Read More
  • How to make a website with traffic How to make a website with traffic 1. Keep it Simple - Make sure the design is simple, clear and pleasing to the eyes. Don't overcrowd it. 2. Multiple Pages - If possible, divide the website into several pages and access … Read More