Effects of web templates in a web site
May 11, 2009 at 6:04 am | In Web design | Leave a CommentTags: nicely designed template, Web design, Web template, website development
Web templates are a life saver for people starting a business or wanting to interact with others in the virtual world. It helps them to start a website through which they can interact with the world. The web site design plays a major role in attracting customers and making them interested.
Web templates are a boon for web developers. One can make use of it as a layout to build a site. Templates with schematic layouts are used to generating massive numbers of web pages. An effective web template provides a user the capability to start the design process quickly, thereby helping him save time and cost in building a web site.
It is best to go for optimized and nicely designed templates for developing sites with lots of pages and navigation links. If your site needs frequent updates, using a web template is the ideal choice. While building a site using a template, a web developer can prepare a basic template by editing it according to the requirement.
If site templates are optimized properly, then the sites developed will be search engine friendly. While selecting a template, make sure that the template design is appropriate for your business. Use web site design software like Dream Weaver to customize your website. While selecting colors, fonts and sizes, keep in mind that your site should be visually appealing.
While designing your site, use images only when they are needed and limit the usage of flash animations as images and flash animations will raise your site loading time. Your site should load within 10 to 15 seconds, or the viewer is likely to go to other sites.
Using a text menu with necessary navigation links is the best practice, as pull down, graphics or pop-ups will confuse users and are invisible to search engine bots.
Templates are perfect for both beginners and professionals to build a site. www.ocarda.com is a good place to get high quality templates at reasonable costs.
How to make your site look good in Google Chrome?
May 8, 2009 at 9:03 am | In Web Masters | Leave a CommentTags: detecting google chrome, display content, google chrome, popup, scripts
Making your site compatible with all major web browsers is very important to reach people all over the world, as you can’t insist that people use a specific browser for viewing your site. Google Chrome is also becoming popular among the netizens, so it is better to make your site compatible with Google Chrome, apart from all the others.
The article will help you make your site compatible with Google chrome.
Detecting Google Chrome
Google Chrome is a web-kit based browser. Hence, if your site is compatible with web-kit based browsers like Safari, then your site will look good in Google Chrome as well. If it is not, then your site may not recognize Chrome’s user-string.
Google has given the following solution for this issue:
As platforms and browsers adopt WebKit as their rendering engine, your site can detect and support them automatically with the right JavaScript checks. Commonly, sites use JavaScript to ’sniff’ the navigator.userAgent property for “Chrome” or “Safari”, but you should use proper object detection if possible. In fact, Gmail has been detecting WebKit properly in Chrome since day one!
If you must detect the user-agent type, you can use this simple JavaScript to detect WebKit:
var isWebkit = navigator.userAgent.indexOf(”AppleWebKit”) > -1;
Or, if you want to check that the version of WebKit is at least a certain version—say, if you want to use a spiffy new WebKit feature:
var webkitVersion = parseFloat(navigator.userAgent.split(”AppleWebKit/”)[1]) ||
undefined;
if (webkitVersion && webkitVersion > 500 ) {
// use spiffy WebKit feature here
}
For reference, here are a few browser releases and the version of WebKit they shipped:
We do not recommend adding “Google” or “Apple” to your navigator.vendor checks to detect WebKit or Google Chrome, because this will not detect other WebKit or Chromium-based browsers!
Display Content
Google Chrome can render content correctly, only when content and character encoding declaration information are provided at the top of your document’s source. Also it doesn’t read encoding information that’s declared with document.write (). If your site has frames or i-frames, then specify the encoding information at the top of the source of those frames.
Popup
Google Chrome will display only the title bar of pop-ups in the lower-right section of the browser window, in order to prevent undesired pop-ups from covering the page. If needed, users can view a pop-up’s content by dragging its title bar into a more visible position.
Scripts
Google Chrome supports only Netscape Plug-in Application Programming Interface (NPAPI) instead of ActiveX. Hence, if you want to load ActiveX control, specify the NPAPI version of the plug-in.
Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.
