This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
In this site : renovationm.com I have a logo at the top and in any browser except explorer 9 (as said by customer) its fine, in explorer it's gone!. what cause it to disappear and how to fix it.. or troubleshoot it ?
i think about including a library like http://code.google.com/p/ie7-js/ but i dont think for that specific problem it will help
Perhaps the extra / in the path after http:// is the issue in IE:
<img src="http:///renovationM.com/jobs/logo.png"> <!-- Notice the extra / -->
^
Related
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
So im designing a webpage but the table color inside does not show up in Chrome when it shows up in Firefox.
I really have no idea how this is! Here is what im talking about:
(Click here for larger image)
Here is my css source:
http://pastebin.com/raw.php?i=hnNkwkGX
Can someone resolve this or explain to be the problem?
Thanks!
Firefox does not operate via the -webkit renderings and such. You'll have to add a -moz-linear-gradient for your gradients as well as your already-existing -webkit-linear-gradient.
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Nothing I found in the archives has worked for me, so hopefully you can help me find a solution. I created my template in Dreamweaver, and have almost successfully transferred it all over to a wordpress theme, but now wordpress has added a small margin below the footer.
The margin doesn't appear on the original layout:
http://merrymeadowspagosa.com/post.html
But it IS on the template:
http://merrymeadowspagosa.com/
Any insight?
Nothing to do with wordpress. Pure css: your body element has a padding-bottom of 40px you need to remove. Inspect it with Chrome Dev Tools
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I've got the alignment issue that shows in IE, this is the page:
http://calibredesign.com/clients/spec/index.html?view=http://calibredesign.com/clients/spec/envi_news.html
there's a big gap between the picture and the copy at the first paragraph, Does anybody know how to write css code to minimize the gap?
Thanks for your help!!
The content of your TD elements seems to be floating left when it doesn't need to be. I think that's probably causing the IE issue.
You really shouldn't be using TABLE elments to layout your page unless it's actual tabular data.
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
When page is loading div's that I tried to hide behind so it appears only when you go on it with an effect. I solved the problem with display:none;/display:block;, but then effect disappeared. How can I fix that without losing the effect ?
Picture; http://img26.imageshack.us/img26/4791/ssspl.png
Actual website; http://goo.gl/nTlZQ
Note: what I mean by error is text around butterflies.
add this one to that;
display:block;overflow:hidden;
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
Can anyone tell me some of the main things to look for when your website displays correctly in Firefox and Chrome but not in IE. It seems my CSS styling isn't getting applied.
Please look at my site below (ignore the design):
http://acews.x10.mx/index.php
You've declared no DOCTYPE. IE hates that.
http://validator.w3.org/
Your best bet would be to correct each error on the validator page and try it again.