Posts Tagged ‘Create’
Thursday, September 25th, 2008
While designing the navigation for your site keep the following points in mind:
* Organized Links
Make sure your links are well organized according to the order of importance. Visitors should be easily able to find what they are looking for under different categories.
E.g. All our main links are found on the top i.e. our services, products,portfolio, resources etc.Other interesting links are found on the right of the page. These are common and consistent throughout the site.
Finally if the web page belongs to a guide E.g web design guide you will find the related links below the right menu and also at the bottom of the page.
Note: Related links are very important as visitors coming to a particular page will probably be interested in more information you have under the same topic.
* Clear and Prominent
Once you have decided on your navigation links, you need to think of the best place to put them. Navigation should be clear and consistent. Try to design your navigation on the top or on the left as these are the first places our eyes go to. Also locate the primary links high enough on the page so that they are visible without scrolling. Navigation images should be seamlessly integrated into the site design. Avoid putting navigation links at the bottom of the page as visitors will need to scroll right down to see the links. If you like you could put the important links at the top AND bottom of the page just to make sure your visitors don’t miss the link.
* Consistent
Navigation should be clear and consistent. The important links of your website should be on every page, in the same location, and in the same sequence. Don’t confuse your visitors by putting your navigation links in different places in different pages.
* Easy to understand
Make your links easy to understand and to the point. Usually you won’t have enough place to have long links so make use of the space wisely. Visitors need to know where they will go on clicking on a particular link, so make sure your links are understandable or nobody is going to click on your links, which will defeat the purpose of designing a good navigation system.
* DHTML Menus
If you have a large number of links under categories and sub-categories you could use navigation menus to organize your links. There are many cut ‘n’ paste scripts available on the Net that you could use to create great navigation systems. A favorite resource center is SimplyTheBest.net, you’ll find tons of useful navigation menus that are very easy to install on your site.
Tags: Create, DHTML, install, links, menus, navigation, site, systems
Posted in web designing | No Comments »
Thursday, July 24th, 2008
Often you have a table in which only a few columns are accessed frequently. On a blog, for example, one might display entry titles in many places (e.g., a list of recent posts) but only ever display teasers or the full post bodies once on a given page. Horizontal vertical partitioning helps:
CREATE TABLE posts (
id int UNSIGNED NOT NULL AUTO_INCREMENT,
author_id int UNSIGNED NOT NULL,
title varchar(128),
created timestamp NOT NULL,
PRIMARY KEY(id)
);
CREATE TABLE posts_data (
post_id int UNSIGNED NOT NULL,
teaser text,
body text,
PRIMARY KEY(post_id)
);
The above represents a situation where one is optimizing for reading. Frequently accessed data is kept in one table while infrequently accessed data is kept in another. Since the data is now partitioned the infrequently access data takes up less memory. You can also optimize for writing: frequently changed data can be kept in one table, while infrequently changed data can be kept in another. This allows more efficient caching since MySQL no longer needs to expire the cache for data which probably hasn’t changed.
Tags: accessed, blog, changed, Create, Data, Frequently, infrequently, MySQL, needs, Optimizing, Partition, probably, reading, Table, Tables, your
Posted in MySQL, tricks | No Comments »
Monday, July 14th, 2008
The robots.txt file will instruct search engine robots what pages and/or folders on your blog or website should be or should NOT be crawled and indexed. Most Content Management Software (Wordpress, Joomla, etc.) will have files and folders that are not relevant for search engines (like images or admin files) and you really don’t want them to crawl them because there is no relevant content on them so creating a simple robots.txt file can actually improve your website crawlability and therefore rankings and organic traffic.
Tags: admin files, Create, engine, File, improve, organic traffic, pages, rankings, robots, SEO, Software
Posted in SEO, google, tricks | No Comments »
Monday, July 14th, 2008
Every website needs a Sitemap big or small. Sitemap should be linked to from every page on your site. A site map will help users and search engine robots find all the important pages on your site with just two clicks. This is especially helpful if your site has a hard-to-crawl navigation menu like java script or images based navigation. For WordPress blogs I recommend downloading this free sitemap generator plugin. You can see example on my sitemap page.
Smaller sites can use second navigation bar in the footer that will act as a small mini site map. This is nothing more than all your important pages as links in the footer.
By submitting a XML Sitemap to a search engine, you are making easier for that engine’s crawlers to crawl and index pages of your site. As Google describes it in this article
“Sitemaps are particularly beneficial when users can’t reach all areas of a website through a browseable interface.”
For regular websites there are many free online xml sitemap generators, just Google it but for your WordPress blog you can use this free Google XML sitemap generator plugin as it will also create Robots.txt file which is the next Free SEO Tip.
Tags: bar, Create, Every website, footer, free, google, images, java script, Map, menu, navigation, page, robots, Site Map, Sitemap, WordPress, XML
Posted in SEO, google, tricks, web designing | No Comments »
Monday, June 30th, 2008
Create a file called “tryangled.url” in notepad and paste this:
[DEFAULT]
BASEURL=http://blog.tryangled.com/
[InternetShortcut]
URL=http://blog.tryangled.com/
Tags: blog.tryangled.com, Create, Resources, shortcut, windows
Posted in Uncategorized | No Comments »
Thursday, June 26th, 2008
Most website owners know that organic search engine results are the best way to get visitors to their site. Organic search engine results are the websites that come up when a user searches on one of the major search engines such as Google, MSN, or Yahoo. Internet users trust these search results much more than paid advertising and a large percentage of most website’s traffic comes from this source. This is why it is important to know how to get your website ranked high in search engines.
Search engine optimization is the process through which web site owners improve their chances of being ranked high in organic search engine listings. There are many ways to do this, including the use of content and keywords on the site, properly using meta tags, and building links. Theses are just a few of the ways that you can help your website rank high, and if you are serious about getting on the first page of listings, here are some more search engine optimization tips.
One of the most important things you can do to optimize your website is to add quality keyword rich content. Most people think of articles when they think of content, and while articles are a great way to add keywords and value to your site, content can also include descriptions, headings, and alternate image tags. You can include relevant keywords in all of these areas that will help to boost your search engine ranking. Just make sure that you use keywords in the proper context.
Another way to boost your search engine ranking is to create links on your site to other related sites and to build a network of links from other sites to your site. Links help to boost your search engine rankings because the programs or spiders that search engines use to index sites will come across these links and they will add value to your site.
An often overlooked way to boost search engine rankings is meta tags. While meta tags are not as important today as they were during the internet’s early years, using meta tags properly will help to boost your search engine rankings. Meta tags are part of your website’s html code and appear at the top of each page in the header tag. You can include keywords in the meta tags that will help to get your site ranked higher. Be sure to use keywords specific to each individual page as you fill them in for your entire site.
Tags: Boost, building, context, Create, descriptions, engine, internet, optimization, Organic, process, Ranking, Search, traffic
Posted in SEO | No Comments »
Thursday, June 26th, 2008
PageRank is relative and shared throughout a website by a unique voting system created by Google. I could spend two days trying to explain how PageRank works, but what it comes down to is having efficient navigation throughout your site. That where a site map page comes in. Since every page on the website will be linked to the sitemap, it allows webcrawlers (and users) to quickly and easily find content. This SEO tip is one of my favorite of top 10 SEO tips.
It use to take 4 clicks to get to a product page at www.questinc.com. By creating a site map, users and search engines can now access any page on the site with only two clicks. The PageRank from these deep pages went from 0 to 2 in about 3 months and the ranking went from virtually not existent to #1 almost across the board for nearly 2,000 pages on their site.Feel free to search Google for any of the terms on this catalog page, such as MITSUBISHI Monitor Repair. See how powerful a site map can truly be.
Tags: Access, Clicks, Create, created, favorite, Map, monitor, page, PageRank, pages, Repair, SEO, shared, Tips, unique, virtually, voting
Posted in SEO | 2 Comments »
Thursday, June 19th, 2008
When you’re writing for your audience, your content focus, post timing and areas of interest will all become associated with your personal style. If you vary widely from that style, you risk alienating folks who’ve come to know you and rely on you for specific data. Thus, if you build a blog around the idea of being an analytical expert in your field, don’t ignore the latest release of industry figures only to chat about an emotional issue - deliver what your readers expect of you and crunch the numbers. This applies equally well to post frequency - if your blog regularly churns out 2 posts a day, having two weeks with only 4 posts is going to have an adverse impact on traffic. That’s not to say you can’t take a vacation, but you need to schedule it wisely and be prepared to lose RSS subscribers and regulars. It’s not fair, but it’s the truth. We lose visitors every time I attend an SES conference and drop to one post every two days (note - guest bloggers and time-release posts can help here, too).
-
Tags: analytical, associated, audience, churns, content, Create, Expectations, figures, Fulfill, ignore, Impact, interest, personal, post, readers, RSS, SES conference, timing
Posted in Uncategorized | No Comments »
Wednesday, June 18th, 2008
Don’t like the caption of Internet Explorer caption? Want to change it? Open the registry editor and go to
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main.
In the right pane create a new String Value names Window Title (Note the space between Window and Title). Right click on this newly created String Value and select Modify. Type in the new caption you want to be displayed. Restart for the settings to take place.
Now let’s move on to some Outlook Express Tricks.
Tags: Caption, Change, Create, displayed, Internet Explorer's, new, Outlook Express Tricks, Restart, Right, Right click, select Modify, String, take, Window
Posted in tricks | No Comments »
Wednesday, June 18th, 2008
To create a table in Ms Word you can use this shortcut !
>> Just type : +======+=====+====+===+==+=+
>> And simply hit ‘Enter’ !
>> You will see that the text changes to a table. Here, the number ‘=’ represent the number of characters in each cell !
>> Just it makes your work easy and fast !
Tags: Create, easy and fast, hit, number of characters, Table, text changes, Trick, type, Word
Posted in tricks | No Comments »