On Mon, Mar 23, 2009 at 7:56 AM, csbartus <[email protected]> wrote: > > ahoy, > > i was looking on forum posts for a solution, there are many links to > external pages, i've tried all those techniques but none works for me. > > i have the following structure in a Wordpress blog: > > <div class="container"> > <div id="header">... > <div id="content"> ... > <div id="sidebar"> ... > <div id="footer"> ... > </div>
The faux columns technique would work much better for you if your structure looked like: <div class="container"> <div id="header"> </div> <div class="container"> <div id="content"> <div id="sidebar"> </div> <div class="container"> <div id="footer"> </div> That's how I do my layouts, at least. -- -- 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 -~----------~----~----~----~------~----~------~--~---
