Hey Christian... Sweet trick to get the layout to work in IE6. It removes the * html hack
I'll have to remember that for upcoming projects. Thanks --- Sean K. Stewart On Mar 29, 11:42 am, Christian Montoya <[email protected]> wrote: > On Sat, Mar 28, 2009 at 2:25 PM, junipllc <[email protected]> wrote: > > > I just had a blast using BP to lay out a new site, however I am > > running into a brick wall...of course it's IE. > > > For search engine reasons I'm attempting to reorder the columns of my > > layout so that it is marked up in the "Content, Left Sidebar, Right > > Sidebar" order but displays in the "Left Sidebar, Content, Right > > Sidebar" order. It works flawlessly with FF, Opera, Safari, IE7 but > > for some reason not IE6. The columns are shifted around aimlessly left > > right up and down. Other than the skeleton code, css includes, > > doctype, yadda yadda, this is what I'm putting in the body: > > > --- > > > <div class="container"> > > <div class="span-14 push-5">content</div> > > <div class="span-5 pull-19">left</div> > > <div class="span-5 last">right</div> > > </div> > > Not sure if it will solve the problem, but this is how I would have done it: > > <div class="container"> > <div class="span-19"> > <div class="span-14 last reverse">content</div> > <div class="span-5 reverse">left</div> > </div> > <div class="span-5 last">right</div> > </div> > > .reverse { float:right; } > > -- > -- > Christian Montoya > mappdev.com :: christianmontoya.net --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en -~----------~----~----~----~------~----~------~--~---
