Viewing from FF vs IE, IE looks like sh**! Why?
-
I am trying to get my text to wrap around inserted images, and while editing or writing it, I look at the “visual” and it wraps text correctly, when I look at “html” it does not wrap, when I publish, it does not “wrap text around images and when I look at it on IE, which I normally do not use, body text extends all the way through the sidebar columns! and looks like hell!
what is going on here? I am using Rubric theme, as the others were too hard to read in small print and cluttered. Now the post on IE looks like horrible, and as a reader using IE I wouldn’t waste 2 seconds on this post. With Firefox, it is ok, but with wrapped text it would be much nicer looking. I am using class=”alignright” etc inside the code to allow for text wrap. could it be “caching” causing this?
thanks
-
Websites usually look deformed on IE. I’m suppose to have bullets on my posts and they show on Firefox but don’t show at all on IE.
-
By the way, Microsoft’s approach to “fixing” this in IE 6 and 7 is to allow “conditional” CSS, wrapped in comments, that will be ignored (as comments should be) by everything except the designated version of IE, which will process the contents of the comment as if it were CSS rather than a comment.
I seem to recall seeing a comment that suggested conditional comments don’t work on wp.com, but I can’t recall where and can’t vouch for its accuracy.
-
Yeah, I see the difference in IE, guess I don’t care too much about that as I never use it except for when my hotmail account opens there.
but as to text wrapping, i thought it wrapped on an older post with images, now I go back to see it and it isn’t wrapped. odd :(
is there code needed at beginning of post to force text wrapping? if so you can write it without the brackets and i’ll know to add it in.
thanks! :)
-
-
if you click my username the first post that comes up will show it to you.
if for some reason it doesn’t then it is here… Post with text not wrapping images
thanks. -
When I look at that page in FF (2.0.0.14) and IE (7.0.6000.16643), I don’t see any difference in the way the images are displayed – there’s text above and below, but none beside the picture. Are you looking to do something like what I did with the “Partial Orders” box inset into this post?
By the way, I did notice that IE doesn’t seem to handle your sidebar particularly well on that page; the fonts are all oversized.
-
yes & yes to both.
when i look at the post in edit mode under “visual” tab it put text to the side of the images dependent upon which side I have the image aligned to. just now, it is not handling it. i just changed over to the rubric format yesterday, so maybe there are some substantial bugs in it when used for either IE or FF?
trying to find a theme that is not “fixed width” is difficult. when i’m writing stupid posts it doesn’t matter much, but the nicer posts tend to have long sentences & paragraphs that fixed width themes don’t support well :(
-
I got that effect by wrapping the content in a floated div:
<div style="border:1px solid;width:50%;float:right;font-size:smaller;padding:2px;">
...stuff goes here...
</div>
You should be able to float the images directly, as well.If you use this approach, you’ll have to use the HTML editor to set it up.
-
Have you tried clicking on the tree icon (after clicking on the picture) and setting the alignment there? That seems to be the only way that I am able to get my pictures to align properly and the text to wrap.
-
Another trick you can do with the div element as a wrapper is to caption the image, or have a quip about it, that floats with the image:
<div style="float:left; ...">
<img ...>
<p style="text-align:center;">some text here...</p>
</div>That particular snippet would keep the text centered under the image, and have the other text flow around it.
- The topic ‘Viewing from FF vs IE, IE looks like sh**! Why?’ is closed to new replies.