Web Design Blog

Css IE Problem – Repairing these Errors is Easy !

One of the most annoying occurrences when doing research on the web is suddenly getting a css IE problem; this does not simply put a stop to productivity, you don’t even know where to start to repair whatever’s at fault. So if you want to discover a quick and highly effective way to resolve these annoying errors, don’t stop reading – the answer is coming right up.

The internet browser is one of the most active applications in your pc; you constantly find new websites, activate various online applications, and cyberspace is full of new programs and new versions for you to install. So as you can see, there is an intensive communication between the web browser and the operating system; the specific area of windows that has the task of ‘maintaining’ this activity is the registry.

When there is a rupture in this registry part of windows, at that time you’ll begin having to deal with nuisances like a css IE problem, computer slow downs, error reports, and on and on. The registry is the component of windows that tracks all the software and hardware you install or deinstall; so if you load or unload software in an improper way, it might give rise to a ruptured registry. Then you have the dilemma of determining exactly what the trouble is and being able to pin down that corrupted part and fix it. What would most of us do in that situation? We can either tackle the problem ourselves or take the expensive route and call for help.

If you’re frustrated by a css IE problem and think you have to pay for technical assistance – hear me out! You don’t need to take that step – hold onto your money for a difficult problem; this is something you can handle yourself, even if you’re not technically inclined and not a windows expert. There are quite a few professional registry fixing tools that are created to scan your system, locating and restoring any defects while you sit back and relax. The bulk of these tools allow free scans and even free fixes though there’s often a cap on fixes. Better safe than sorry – go ahead and take advantage of these useful tools; this annoying occurrence can become a thing of the past and you can enjoy your web surfing again in no time.

How To Fix IE Css – Repair it By Yourself !

If you’ve ever been working at your computer when suddenly you get IE css errors, and if you’re not a computer technician, then relax, you’ve come to the right place. Continue to read this brief report – we’ll show you how simple a process it is for you to straighten out this and other pc troubles quickly, effectively, and for (almost) free!

Let’s start off by learning what the source to these problems is. With all the new software available these days, you probably update your windows with the latest programs, sometimes causing it to become a bit ‘overloaded’; so when windows gets into that situation, we may start experiencing problems. Incorrectly adding or removing software programs may cause damage to a complicated and necessary area of your system, which is termed the ‘registry’.

A corrupted registry file can trigger such frustrating occurrences as IE css errors and many other bothersome troubles. It’s the function of the registry to track all the various software and hardware installations/removals and updates. With the installation of new software on your computer, it records the application’s specific settings, including where the software can be found and what it needs to operate. So if this area of your registry is damaged, you can practically depend on assorted error messages and irregularities to eventually appear.

So if you encounter IE css errors, the first order of business is to scan your windows registry in order to find the exact cause of the trouble. This is a very straightforward process – you simply need to make use of a specialized registry cleaner; these utilities are specifically designed to scan your registry, rooting out the causes of the trouble, and correcting the problems. It is common for these tools to allow no-cost scans and fixes (usually up to a certain amount), so you have nothing to lose by trying one out. in a few short moments you can rid your computer of these annoying errors for good. A word of caution – it is not a good idea to fool around with your registry; you just might end up with problems you haven’t even thought about!

Find More CSS Articles

IE 6 Css Fix – Quick Fixing Tip !

A real nuisance when doing web searches is getting IE 6 css problems; you don’t just lose work and waste time, you have no idea what triggered it and where to look to take care of the problem. If you are hoping to learn the easy, quick, and inexpensive answer to repair most of these problems, continue to browse the information that follows.

If you use the internet on a regular basis, your web-browser is constantly working – you use various sites for business and pleasure, you register with certain sites, and cyberspace is full of new programs and new versions for you to install. As you likely already know, an exchange of information routinely occurs to and from internet explorer and your pc’s operating system; the exact location where windows has the job of enabling this activity is the registry.

When there is a rupture in this registry part of windows, at that time you’ll begin having to deal with nuisances like IE 6 css problems, freezes, pop up errors and many other problems. This is where your windows “registers” activity on your pc, including installations and removals; so if you load or unload software in an improper way, it can easily damage your registry. The biggest problem is recognizing that the registry is to blame and then being successful at locating the exact area at fault and correct the problem. What are our options when we encounter this problem? Either try to fix it by ourselves, or call in the pros.

If you come upon IE 6 css problems and intend to contact a professional – just a minute! You’d be wise to hold off – you can save yourself time and money – this is one problem you can repair on your own, although you may never have attempted a computer repair before. There are a variety of excellent registry fix programs that specialize in scanning your pc, locating and restoring any defects in just a few minutes. The majority of these programs provide no-cost scans and even free fixes although this can be restricted. Better safe than sorry – go ahead and start using a registry repair tool right away – you can rid your computer of these inconvenient episodes with just a few minutes of your time.

Dead Center Layout Using Css Or Center Align A Div Horizontally And Vertically

How many of you have searched Google for “dead center align” or “vertical center css” and found results showing more than a million pages only to realize that most of them don’t give you the right solution you are looking for? Well, vertical centering has always been a nightmare for designers and developers. The solution we are looking at is not just limited to aligning text vertically center inside a container or a div tag. We need to vertically and horizontally center a div container in a browser. We need to align an object (a div or a table) whose height is unknown, inside a div.

The concept of aligning a div vertically center in a browser is pretty simple. It is achieved by absolutely positioning a div in half of the area height and moving up by half of its height. This is possible when you know the height of the div. Let’s see how it works. Here is the css style defined for the wrapper div with an ID “box”. The important thing to note here is the “left” and “top” parameters. These values are defined in percentage values. This really helps you to position a div in the center even when you don’t know the resolution of the browser screen. The top-left corner of the div is now sits in the center point of the browser. The next thing to do is move up the div half of its height and move left the div half of its width. This way the center point of the div is aligned to the center point of the browser. This is done by defining negative values for “margin-top” and “margin-left” attributes. See the css below.

#box {
width:300px;
height:120px;
position:absolute;
margin-left:-150px;
margin-top:-60px;
left:50%;
top:50%;
text-align:center;
}

We have formed a div with a dimension of 300×120 and placed it in the center of the browser. Now, we need to have some text inside this wrapper div which should be again centered inside div both vertically and horizontally. In this case, we need to use some browser hacks and tricks. See the html code and we have now additional div tags to wrap the text and styles targeting different browsers.

#box>#floating { /*display:table for Mozilla & Opera*/
display:table;
position:static;
}
#floating { /*for IE*/
width:300px;
height:100%;
position:relative;
}
#floating div { /*for IE*/
position:absolute;
top:50%;
left:0px;
width:100%;
}
#floating>div { /*for Mozilla and Opera*/
display:table-cell;
vertical-align:middle;
position:static;

}
#floating div div {
position:relative;
top:-50%;
}

The text is vertically and horizontally aligned center

as is the wrapper div. You can use a table as well without a height.

Now what do you do when you want to vertically align a div or table whose height is not pre-defined? Simple! Set the height of the wrapper div to 100% and remove “top” and “margin-top” attributes. Now in the above html code, remove the text with a table or a div tag which doesn’t have a defined height. It works! Download the code and experiment it yourselves. If you found something more interesting, let us all know. Hope it helped.

Anees Madathil, Solution Analyst, Amoeba Solution Kiosk

http://ask.amoeba.co.in

Find More CSS Articles

Css Creation Rules – I

If you are going to write quite a voluminous CSS-file, you should follow some general recommendations, which can help to avoid mistakes and to make the code understandable and convenient.

Write all the rules for every selector in the same place

It is allowed for very selector to add every style parameter and its meaning apart, as it is shown in the example 1.

TD { background: olive; }
TD { color: white; }
TD { border: 1px solid black; }

Note, however, this is not very practical. It is necessary to repeat a single selector several times and it is very easy to be confused in their height. Therefore, the arguments for each selector to write down. In this case, the list will be mentioned to receive the next view (example 2).

TD {
background: olive;
color: white;
border: 1px solid black;
}

The shape of the letter – one or more lines – according to the author. Assuming that all parameters in a separate line, it is easier to make sense necessary with the help of a look. According to the CSS code editing easier and faster.

There must be meaning in the code below

If the starting point, there is a parameter with a meaning that is for switch assemblies, and later the same parameters, but already with a different meaning when it is applied, the effect is weaker than in the code (example 3).

P { color: green; }
P { color: red; }

In the given example for the selector P, the color of the text first sets as green and later – red. As the meaning RED is located lower, than finally it will be applied to the parameter COLOR.

Indeed, it would be better to avoid such a note and delete the repeating selector parameters. But the same may occur not evidently, for example, in the case of connection of the different style files, which consist the same selectors.

Begin with the selectors of the top level

Taking into consideration, that a lot of style qualities of the elements are inherited from their parents, it is better to begin the style sheet with the selectors, which are the containers for other elements. Particularly, these are BODY, TABLE, UL, OL and others. If it is necessary to set the typeface of the script for the whole text of the web-page, then it is necessary to apply the parameter FONT-FAMILY to the selector BODY, like it is shown in the example 4.

BODY {
font-family: “Times New Roman”, Times, serif; /* Script typeface */
font-size: 110%; /* Script size */
}

The inheritance of the qualities allows not repeat for several times one and the same parameters, if they were set for the selectors of the top level. But, not all the attributes are inherited and to some of them, like BORDER it is necessary to treat several times.

____________________

More information about CSS, HTML, PHP & SEO here: PHP Tutorials.

Nicole Sullivan (Consultant), Stoyan Stefanov (Yahoo! Inc.), “The Top 5 Mistakes of Massive CSS”
Video Rating: 4 / 5

CSS and Tables:

The History of tables

Before tables came along, the web was a pretty dull place. Using tables for layout opened up new vistas of possibilities of visually “designing” a page. It could well be argued that table based layout was responsible for the popularity of the web and the field of web design.

Article Marketing Free Tool

Use the same article marketing tool used by Internet marketing pros http://www.MagicSeoBot.com

 Worse still, over the last few years, table based layout has come under severe criticism and was widely demonized. Web purists claim that tables were never meant for layout so one shouldn’t use them for such. A rapidly progressive hype seems to be in the air all around.

Reality behind the hype

Despite the fact that pioneers have been talking about web standards for a long time, the majority of web sites are still developed using tables and non standards compliant code .
History has shown many examples of technologies that started out life with one purpose, only to end up finding more practical applications as something else. And it sounds very apt in case of tables. The web itself was never intended to be a channel for edutainment, marketing and information but for sharing research data.

Using tables is a pragmatic approach, if not preferred

The W3c Web Accessibility Guidelines recognize that designers will continue to use table for layout – and so include information about how they can be implemented in the most accessible way. Designers are not going to immediately stop using tables for layout; mainly owning to the reason that this is the default behavior of most WYSWYG (what you see is what you get) Web design packages and; CSS for layout is so difficult to implement successfully.

Moreover, Professionals still argue the use of tables for the layout of pages on the Web, despite the fact that this goes against current standards. They argue it to be a pragmatic approach – if not their preferred options.

Private Label Rights

Looking for Content without Strings Over 10000 PLR Articles Available http://www.Free-Plr-Article.com/

Let’s explode the myths: CSS vs Tables

Most web designers don’t simply feel the need to switch over

The majority of web sites are still developed using tables and non standards compliant code. Because of this, user agents will be forced to handle table based layouts for many years to come. This effectively negates one of the biggest selling points for web standards. That of forward compatibility. That’s why, most web designers really don’t feel there is an overwhelming need to start developing sites using CSS based layouts and standards compliant code.

MAGIC SEO BOT Fully Automated SEO Promotion Tool for Better Ranks/Traffic/Sales/Bookings And 34000 unique Visitors Daily With http://www.MagicSeoBot.com

Free Plr Article Is World Most Affordable Private label Article, Its More Then Million Top Quality, Private Label Articles & Information Which Can Flood http://www.Free-Plr-Article.com

More CSS Articles

CSS
by psd

CSS within ASP.NET Pages – How ASP.NET Uses Skins and Themes with CSS, and the Problems this Can Cause

If you’re developing a website in an HTML editing software application, life is straightforward: you create a style sheet, and apply this to your web pages.  So if, for example, you want certain copy to appear in a big red box with yellow background, you create a style (called bigRedBox perhaps) and apply this to the relevant DIV tag: job done!

Life is also fairly straightforward if you’re developing an Intranet for a small company using ASP.NET, and you don’t have to worry too much about compatibility with HTML standards or accessibility for disabled people.  You can make free use of ASP.NET controls like gridviews, textboxes, panels and labels to create your webpages, secure in the knowledge that Microsoft will do its best to render these sensibly for your clients’ browsers (be they Firefox, IPhones, Safari, IE, Chrome or any other software).

Where life gets tricky is when you want to use all the server-side tools in ASP.NET, but then use CSS styles to format them.  Here’s how this works.

Themes and Skins

In ASP.NET you can create a theme and apply it either to individual webpages or to an entire site.  As part of this theme, you can skin controls. 

For example, suppose that you think command buttons look better with a pink background (maybe you’re going through a girlie phase; or maybe you are in fact a girl).  To do this, you could create a skin which specifies that all text boxes will be pink, and the web server will duly oblige and apply formatting to the HTML INPUT tag (which is, ultimately, what an ASP.NET textbox will become).

If you then apply a style to the resulting INPUT tag, this will be overwritten by the theme.  You can set the CssClass property of a text box (or any other server side control), but again the skin will take precedence over this.

A Policy Recommendation

There are some compromises you can make to keep the best of both worlds (server-side controls and CSS formatting).  Here are a couple.

You could avoid web server controls altogether, and use server-side HTML tags instead.  For example, you could declare a DIV tag, give it a nice format using a style and then set its RUNAT attribute to SERVER.  You could then use server-side code to manipulate the contents of the tag.

Alternatively (and probably better), you could avoid skins altogether, and rely on the CssClass property of server-side controls to format them.  For example, you could create a gridview, and give the header row, item row, footer row, pager row and all other component parts separate CssClass properties.  Bearing in mind that a gridview is rendered in HTML as a table, you could then create a style sheet to format the table and its header row (TH tag), rows (TR tag) and cells (TD tags) accordingly.

Out of the two approaches, we prefer the second.  It takes a while to set up your style sheets successfully and there are some annoying cross-browser niggles, but it can be made to work.

Andy Brown has been developing websites in Microsoft ASP.NET for a number of years now, and also runs Visual Basic training courses and Visual C# training classes for Wise Owl Business Solutions.

How To Style Your Text With CSS

Styling text with CSS is really simple. We can define colors, underline it, make it bold, define the font etc etc.


We will start with some basics.


First we define the html where we will be working with.


This is the text



Colorize your text

We can select the P tag and add some styles to it.

p {

color:red;

}


Now our text will turn red. You can define any color code your want or choose one of the 16 standard color names. The color names are: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white and yellow.



Define the size of your text

p {

font-size:12px;

}

You can define any font-size you want, 145 pixels is not a problem. That is, technically speaking.



Make the text bold or Italic

You can use the font-style property to create these effects.

Bold:

p {

font-weight:bold;

}


Italic

p {

font-style:italic;

}



Overline, Underline, strike-through and none

The text-decoration property is useful to create the underline and the other effects we need.

p {

text-decoration:underline;

text-decoration:line-through;

text-decoration:overline;

text-decoration:none;

}


On default, the text doesn’t have any lines at all. Except for the link. You can remove the underline by using the text-decoration:none; setting.


You see, it’s quite easy to style your text using CSS. And you can do it all in a separate stylesheet!

Hilco van der Meer is known as the author of the How To Master CSS Course and is a web developer for over 5 years now. His blog can be found at http://www.DutchDesign.org. The course contains a Real-Time CSS Editor to practice in real-time with the CSS codes, a complete step-by-step guide and the informative Training Videos. For more information you can visit: http://www.HowToMasterCSS.com

www.build-your-website.co.uk A beginners guide to CSS. What are Cascading Style Sheets (css), what do they do, and why should you use them, and how are they used.
Video Rating: 4 / 5

What is CSS Web Design ?

The majority of web pages are written using HTML (Hypertext Markup Language). HTML was invented by The European Laboratory for Particle Physics (CERN, Switzerland) to allow researchers to exchange structured documents through a network of computers. By structured documents, we mean organising a text document with different levels of headings, paragraphs and lists, or creating tables to handle tabular data (a bit like in Excel), and linking it to other documents in a non-linear manner (Hyperlinks). HTML is cross-platform : because HTML pages are text only files (have a look at the source code in your favourite web browser to see what I mean), any computer can read it, whatever system the user is using (for example Unix, Windows or Mac).

However, in the 1990′s and the very rapid development of the world wide web, a problem began to appear.

HTML was primarily designed to handle rather simple documents. But with the arrival of graphical browsers and a large public accessing the web, designers became more and more demanding, and although it is a language which was essentially created to organise content and structure, it was being used more and more to control presentation : one very well known example is the use of tables to control the presentation. Tables were first created to handle tabular data, full stop. But, as web sites started to pop up all over the place, designers started demanding more complex pages, for example, a layout organised in several columns, something that HTML couldn’t do and was never meant to do. So they found a way to work around this limitation : why not use tables to achieve this presentation ?

Also, at the same time, a browser war between Netscape Navigator and Internet Explorer reached its peak: this led to the development by these two firms of numerous proprietary extensions (ie Marquee or Netscape blink elements), which means they didn’t work in the competitor’s browsers.

While HTML was supposed to be a universal way of organising and exchanging documents in a simple way, it was becoming increasingly fragmented; in addition, designing web pages using tables didn’t work as consistently as designers were expecting : some layout could even be broken if using the “wrong” browser. This was the era of those logos proudly claiming “best viewed with Netscape” or “best viewed with Internet Explorer ?”. Finally, the size of the markup, compared to the actual content, was cluttered and unnecessarily heavy.

And then came CSS …

This fragmentation of the world wide web and the own limitations of HTML language first led to the standardisation of the most useful proprietary extensions and the rejection of the others (blinking text and so on). This was The World Wide Web Consortium’s (the main international standards organization for the World Wide Web) important task with html 3.2. The second idea was to stop HTML being misused for presentational purposes. By using a separate style sheet to control the presentation, HTML would keep its original use, that of structuring the documents.

CSS level 1 were developed and finally adopted in 1996 by the W3C, even though a near-full implementation of the specification wasn’t reached for all browsers before the end of the century. Finally, there was a way of separating the structure from the presentation itself, which meant the code was reduced in size and complexity. It also allowed designers to create style sheets depending on the use (better accessibiliity with large text alternative for visually-impaired users, for example, or layout optimised for printers, PDA, etc). CSS level 2 was launched in 1998 with new capabilities, and though still being a work in progress, current versions of CSS, combined with the rapid development of the XML language, allow the creation of websites in a much more efficient way.

Our web design agency provides web design services in Bristol (UK). For A Free Consultation and Quote, please check out our website at: Clifton Web Design.

www.cssfanews.com CSS – Move Get up, get up, get up, you’ve got to keep on moving (x4) if i put you backwards straight to the dance floor will you still be waiting for me? will you still be my friend? i don’t wanna beg you out with crazy crazy ideas for i know this ain’t a good place for us to talk you better get your move on or all of that good ones will have gone you better get your move on or all of that good ones will have gone you better get your move on get up, get up, get up, you’ve got to keep on moving (x4) if you want to say goodbye if you want to play seek and hide just stay, you’ve got the time do you really need to be on time? if it’s something that you like everybody its so so free outside there’s no need for playing nice, do you know what? you better get your move on or all of that good ones will have gone you better get your move on or all of that good ones will have gone you better get your move on get up, get up, get up, you’ve got to keep on moving (x4) all the stars about to die but you don’t need to have inside i don’t want to change your life so please hold me tight tonight they can really use a cab, don’t go out and crash your car i don’t mind be mess today, just take me (…) you better get your move on or all of that good ones will have gone you better get your move on or all of that good ones will have gone you better get your move on get up, get up, get up, you’ve got to keep on moving (x4) if someone drops you on the floor and you don’t know

How to Beat Internet Explorer When it Comes to Css, and Stop Its Regime of Terror

I am guessing an article on this subject has been posted prior to this one, I should hope a few have! However I hope this will provide a refreshing angle on the subject and branch to some other interesting bits of stuff.

I am sure that anyone who has taken even only a few steps into web development has come across the gigantic force that is Microsoft’s Internet Explorer. Even for the most experienced coders, the most popular browser of this age has always been a prominent foot across the path of our websites technological progression and the possibilities of which the internet is yet to yield. Maybe not crushing ideas, but certainly making it a lot harder to bring these ideas from paper to browser.

However, although IE, wielding its scathing weapon the Microsoft corp. and therefore for-fronting the battle as the windows default has dominated the market; we have weapons which allow us the fight back! I think I’ll cut the metaphors here and get back to business… Well, how can we fight back? And more importantly, what can be done to keep our designs looking slick in the interim… Yeah before the proper browsers take over!

I’ll start with the fighting back. Personally my favourite method would be to utilize a conditional comment and tell people what they should be doing! Something like this…

Sorry in advanced that all the code used in the article has had to be altered so that articlesbase wouldn’t filter it out :-( If you pretend that there is an open triangle bracket infront of each bit then you’re okay! eg h1> /h1>

!–[if IE]>

h1>strong>Internet Explorer is Sh**e! Get a proper browser like a>Firefox/a> before I come round and make you!!!/strong>/h1>

![endif]–>

Realistically I wouldn’t try this method though, probably not the most tactful way when it gets down to it. You could however place a banner showing your support of these less buggy browsers such as firefox. This websites great for this promoting firefox business, very nice banners right here: http://www.spreadfirefox.com/?q=affiliates/homepage

Conditionals are pretty clever little buggers though, for general use they can become quite useful. And you’re not just limited to !–[if IE]>. The comments understand other operators as well; you’ve got the NOT operator which is an ‘!’. So “if not IE” would be !—-[if !IE]>. In addition to this there are “greater than” = ‘gt’, “greater than or equal to” = ‘gte’, “less then” = ‘lt’ and “less than or equal to” = ‘lte’. These can be used when referring to browser versions, so !—-[if lte IE 5.0]> could be used to warn users about a feature unavailable to them when browsing your site with IE version 5.0 and below.

But we are not here to help out the Internet explorer users; we’re here to convert them! Doing your bit locally can make all the difference. If you are round at a friends and he/she happens to log on to the internet using IE (boooooo), make it your concern that the very first thing that is done is the downloading of firefox (sorry Opera etc I’m a bit biased to the mighty fox.) Of course if the loging on to the internet part does not occur in the general flow of things it must also be your concern to make sure it does!… “Umm, you mind if I check the train times?” Okay I’m getting a bit carried away here, although very important to the advancement of the human race, you need not devote your life to spreading firefox.

The great progression in the internet and its uses over the last few years has meant that the look and the feel of a site has come under a lot more scrutiny, especially with ever rising amounts of traffic as more and more people connect to the internet. Complicated uses of graphics and CSS mean that when it come to interpretation by different browsers, everything can go wrong. The Browser that is renowned for taking perfect code and screwing with the end results is of course Internet explorer. It is so tempting just to say screw it and ignore the IE users and their browser, but with over 58% still using a version of IE this really isn’t plausible solution.

So okay we’ve got to fix the problem. Where to start?

Well firstly it is a must to make sure your code is valid. Just from an incorrectly written Doctype or wrongly phrased line of css can through internet explorer into all sorts of funny modes where anything can happen. Make sure you get a green light here http://validator.w3.org/ and here http://htmlhelp.com/tools/csscheck/ .

Good stuff, that’s one step in the right direction if anything. Now if the problem still exists, what now?

Most of IE’s rendering blips are caused by bugs, which can be worked around with quick alterations or what are called hacks. Chances are your problem has been experienced by people before you and a fix has been fabricated already.

So what’s going wrong? I will list a few of the most common bugs, some which I myself have experienced and a link to some relevant articles explaining in depth the fixes.

• My borders have gone crazy! – fix… http://www.positioniseverything.net/explorer/border-chaos.html

• Margins doubled, pushing my content down and generally mucking stuff up – fix… http://www.positioniseverything.net/explorer/doubled-margin.html

• Contents there one minute gone the next, the peekaboo bug – fix… http://www.positioniseverything.net/explorer/peekaboo.html

You may have noticed that all those fixes above are at one website. Basically “Big John” and co of Position is Everything .net have done a fantastic job among some other geniuses out there, so why don’t I just give you guys a link to his site, the chances are you’ll be able to find a fix there… http://www.positioniseverything.net/explorer.html

You’ve now with a bit of time and effort (it sucks doesn’t it, and it really is unnecessary effort!) probably been able to fixed up your site. But what if something still purists, what can you do!? Well here is what I do…

Firstly if you know something which could be causing the inconsistencies in your site when rendered by different browsers, try just experimenting with this particular element of the code. Say the content part of your page is being pushed below your side navigation and you recon that IE is playing with your margin values but it’s not the double margin bug. Just adjusting the values of margins can bring results. This is a good time to introduce an excellent piece of free software called CssVista. If you know css well it can also be an excellent tool when in depth analysing your code when looking for problems. Check it out here http://litmusapp.com/cssvista/

If you can still find no joy using this experimentation method I’m afraid the best hope is now to do what I really find annoying especially since if browser bugs didn’t exist it probably wouldn’t be necessary. We’re going to have to start again. Now don’t panic we’re not going to redesign your site from scratch, we’re going to make a mock up page of your current design, testing for rendering problems all the way.

Okay, well your average website nowadays is divs inside divs inside divs. So first step is to create you’re outermost div and in your css give it all the position you want and a background-color so that you can see it. Now add the divs that are contained with-in this one and do the same thing, giving them all nice bright colours so you know exactly where they are. Now test it like crazy, anything going wrong so far? Basically keep going like this, until something starts to look weird, then think why it doing this? What have I just done to make it go weird? Google and other free recourses can be come very useful now. Yahoo answers is fantastic for everything so it is always worth a try at http://answers.yahoo.com.

That’s about it really; Give that a try and well, good luck!

So, we’ve had a quick look at how to rid the world of Internet Explorer and how to get by in the time being. I’m not a fan of Microsoft attempt at an internet browser but not really in the league of this guy http://toastytech.com/evil/index.html .

Basically guys have fun and make sure you’re not supporting the IE domination by using it!

Pete Taylour is co-owner of the fast growing ebook site http://www.liquidebooks.com the only place to go for your cheap and free ebooks. With strong interests in a huge amount of different music styles Pete and friend are soon to embark on some crazy mix submission site for upcoming DJs across the globe, be sure to keep your eyes peeled for that and make sure you check out Liquid Ebooks at http://www.liquidebooks.com

Pete Taylour is co-owner of the fast growing ebook site http://www.liquidebooks.com the only place to go for your cheap and free ebooks. With strong interests in a huge amount of different music styles Pete and friend are soon to embark on some crazy mix submission site for upcoming DJs across the globe, be sure to keep your eyes peeled for that and make sure you check out http://www.liquidebooks.com