jimdex
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Picture display problem in WordPress 3 and IE6My solution, don’t know if it’s the best one, but it works for me :
Change :
#content img { margin: 0; height: auto; max-width: 640px; width: auto; }
by :
#content img { height: 640; width: 640; } html>body #content img { margin: 0; height: auto; max-width: 640px; width: auto; }
Forum: Fixing WordPress
In reply to: Picture display problem in WordPress 3 and IE6and exactly here, in the style.css file of the twenty ten theme :
#content img { margin: 0; height: auto; max-width: 640px; width: auto; }
IE has a rather strange way of doing things. It doesn’t understand the height: auto; width: auto;
An idea ?
Forum: Fixing WordPress
In reply to: Picture display problem in WordPress 3 and IE6it seems that the problem is in this line, just before the picture :
<div id="content" role="main">
and it’s the “content” part, not the “main”. I’m trying to find the solution in the css file.
Forum: Fixing WordPress
In reply to: Picture display problem in WordPress 3 and IE6Unfortunately, the dimensions are well managed in the default WordPress 3.0 theme (Twenty Ten) :
<img class="aligncenter size-medium wp-image-10" title="Nénuphars" src="https://daix.com/test/wp-content/uploads/2010/09/Nénuphars-300x225.jpg" alt="" width="300" height="225" />
Thanks for the help.
Forum: Fixing WordPress
In reply to: Picture display problem in WordPress 3 and IE6I agree with you Peter. Unfortunately, according to Google Analytics, 20% of my visitors are using IE6 !
So I still looking for a solution. ??
Forum: Fixing WordPress
In reply to: How do I get my RSS feeds to not use my theme?Well, I want to do exactly the opposite ! I was very happy with my RSS feeds and theme, but since WordPress 2.1, I can’t use it anymore. ??
The source for the feed was like this in thunderbird before :
1.
<body>
2.
<iframe id =”_mailrssiframe”
3.
Mon texte
4.
</iframe>
5.
</body>
And after :1.
<body>
2.
<p>
3.
My text
4.
</p>
5.
</body>So if someone have a clue about what have changed and where (is it an option in wordpress ? Something coming from feedbuner ? )
(Sorry, I’m French !)