Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with positioning in IE

Status
Not open for further replies.
First off you need to make your page pass validation ( you can't have <p> inside <a> like you have. Use <span> and then CSS to style it if you need to. You can also validate your CSS and see if there are any issues that need corrected.

If the problem still persists, then start cutting up the page CSS until the problem stops... basically isolate the troublesome bit of code.

Let us know how you go.

Cheers,
Jeff

[tt]Jeff's Page [/tt][tt]@[/tt][tt] Code Couch
[/tt]

What is Javascript? faq216-6094
 
cheers for that babyjeffy. am on it now...will let you know how I get on. New I had warnings with the <p> tags, but that is a good idea using the span...cheers

Let you know how i do.
 
What I have now done is created a css file that is open to all browsers
but anything that needs changing in ie is placed in another css file. This is placed within the head tag of the page.

<link href=" rel="stylesheet" type="text/css" />
<!--[if lt IE 7]>
<link href=" rel="stylesheet" type="text/css" />
<![endif]-->

Did it this way to tidy up the css code and hopefully locate my error, but with no luck.aaarrghhh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top