1. maybe try display: block; on the bookmarks
2.
=> IE does the boxmodel in it’s on way. Therefore border, padding and margin look odd.
Easy sollution is an ie specific stylesheet
<!--[if IE]><link rel="stylesheet" type="text/css" media="screen" href="ie.css" />< ![endif]-->
you might additonally want to work on a few of the validation errors that are related to structure —
http://validator.w3.org/check?uri=http://www.uberpiglet.com/
for instance, you are re-using id=”arttits” for some of style stuff. You ought to be using class=”arttits” if you intend to re-use it.
Below that particular example in the results is some more structural stuff as well.
Thanks for the fast replies…I will have a play with those structure valiadation issues first and see if that sorts it out. I must admit my css is a little sloppy…thanks for the help!
Ok….I have sorted some of the validation issues out/ still working on them though…an interesting thing though, is that the image wrapping is fine for the same posts in the archives and cat pages etc… so it’s only the home/index page that is having the wrapping issues….so it can’t be the version of IE… it’s gotta be somthing with the coding/css of the index page.
This is driving me mad… I have sorted all the validation issues out…and the class and ID issues. The bookmark sits where I want it to, but when I refresh the page…it won’t display the bookmark…open edit source…displays…refresh…won’t display? It’s crazy…and I still can’t sort out the wrapping issue on the home page. I am going mad!!
As I am fighting a similar problem and can’t figure out how to fix it, would you be so kind as to give a hint how you solved the problem?
My problem was how different browser interpret the CSS. Firefox and IE7 were allowing a negative position value…and IE6 was not…so objects inside an Div ID were positioning themselves differently depending on the browser. I just went through the CSS code of the affected area and checked what all the settings were doing. Also I found Firefox’s web developers toolbar very helpful…it has all sorts of tools that allow you to see what is what etc. View class id’s etc.
Refreshing the pgae and hiding the item problem was because I had the item placed inside a container that was behind another container… then when I refreshed, the item was going into the background. I had to move it into a different container…but in certain cases you could just play with the Z-Index settings to sort out that problem.