IE 6 Problems
Posted: 14 January 2009 04:02 PM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2009-01-14

Hello,
I’m not actually a CSS user, but I’ve been given a problem to sort out in my new job.
We have a website which we have no real control over (apart from the CSS file) as it is a portal, generated by javascript.
The layout looks fine in Firefox, IE7 and Safari, but goes astray in IE6.
I really don’t have the technical knowhow to sort this out, so any help would be greatly appreciated.
Here is a link to the page that goes wrong (all are based around the same template).

http://www.almegapromotionalgifts.co.uk/categories/name/business-card-holders/category_id/860

All help gratefully received.
Thanks

Profile
 
 
Posted: 21 May 2009 10:13 AM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  7
Joined  2009-05-21

make all in that way

you have container (div) who is arround all content inner
make that:

<div class=“odd”>
<a class=“fl”>< img ></a?
<div class=“fl”>
  content
</div>
<div class=“clear”><!——></div>
</div>

style:

.fl {
float:left;
}

.clear {
clear:both;
height:0px;
}

all the fl elements must be with fixed width
it seems that will not be a problem for you
again.. sorry for my english

Profile