Jump to content

css is off


lesley

Recommended Posts

Hello,

 

i am looking for some help. I havent changeed any of my code - but for some reason today my website is not rendering correctly in IE, it looks fine in Safari. the domain is tica.org. when you look at the page in IE, there is some text at the top that is appearing lower than it should, so is the search box. Anyway i try to correct it - it affects how the website renders in Safari and other browsers. So i am not sure what to do, any suggestions?

 

Thanks,

Lesley

Link to comment
Share on other sites

The site is emulating IE7 and you already have conditional comments for IE in the header section. You can add to these to target the problem you are having and it will only affect IE. However as you have a lot of pages in your site it might be a good idea to group all the IE css into one specific style sheet and link to it using a conditional comment and place the link under the link to your main style sheet.

 

Read this http://css-tricks.com/how-to-create-an-ie-only-stylesheet/ or Google for more info.

Link to comment
Share on other sites

Thank you for the response.

 

I have added IE statements for now. I am still not sure why things just changed on their own. Anyway, i am just have one more problem. the text on my homepage "welcome to tica" is being cut off by part of the image and i am not sure why.

 

Any suggestions?

 

 

Thanks,

Lesley

Link to comment
Share on other sites

Your search box in IE is too wide because of

<!--[if IE]>
<style type="text/css">

#search {
float: right;
width: 195px;

and I would guess that the "Welcome to Tica" is cut off in IE because of

<!--[if IE]>
<style type="text/css">

}
#home h3 {
margin-top: -9px;
}
#sea

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...