CAT | Web Design
23
Making your website work with Internet Explorer 8 (IE8)
0 Comments | Posted by Brian M McGarvie in Browsers, CSS, Web Design
OK probly well known by now. But if you’re site is ‘broken’ in IE8, you could try the following which tells IE8 to work liek IE7.
<meta http-equiv=”X-UA-Compatible” content=”IE=7″ />
It belongs in the document’s HEAD. More importantly it needs to be preferably at the top of the HEAD section before any css, linked files etc.
The rule of thumb is, that the IE 8 meta tag needs to be placed above any linked files.
3
Search Engine Ranking via Title Tags
0 Comments | Posted by Brian M McGarvie in SEO & SEM, Web Design
”How do I get my website page to rank well in search engines for a certain search term?”. While there are many techniques and tactics that can contribute to how your website ranks, one of the most fundamental is through the use of title tags. Title tags let search engines know what the main thrust of each web page is, and which categories or search terms to file the site under. By the way a title tag is what falls between the <TITLE> and </TITLE> tags in your html code for each page.
2
Firefox horizontal jump between pages!
0 Comments | Posted by Brian M McGarvie in Browsers, CSS, Internet, Web Design
For a very long time I have always been annoyed by Firefox…
Have you ever witnessed the ‘horizontal jump’ cause by your content being taller then the browser size? And the effect is when you go between pages that are bigger and within you experiance a jump.
For ages I thought it was some problem with my own CSS, but today I discovered it’s because of the vertical scrollbar in Firefox. The above affect doesnt happen in IE as it always shows the scrollbar.
The CSS to make Firefox always show the vertical scrollbar is as follow:
html { overflow: -moz-scrollbars-vertical; }
html { overflow-x: auto; }
When I undertake developing a website I always try to keep 3 key principles in mind;
1. Simplicity
2. Modularity
3. Balance
Follow my basic guide and you’ll become a better developer/designer…