[email protected] wrote: > I think I've narrowed it down. If I remove the following code in the > css-ui.tabs.css file: > > .ui-tabs-nav:after { > display: block; > clear: both; > content: " "; > } [...] >> >> http://www.superiorshelving.com/mfg/nexel/test/test6.php >>
You have correctly diagnosed your problem. It's the "clear: both;" on your clearing element. This clears the sidebar before the tabbed content appears. Try using "overflow: hidden;" on .ul-tabs-nav to contain the floats instead. Please, *please* give us a valid page to work with. I'd also suggest your code would be far easier to debug if all your presentational code were in CSS, instead of using presentational tags like FONT and presentational attributes like 'align="right" ...'. Cordially, David -- ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
