I have a formatting issue using the Molio theme with IE 6. The primary links (the cool tabs at the top of the boarder between header and body) float to the top of the header at times. If I refresh the page, the primary link finds its way back to the proper position. Odd. I downloaded the 4.7 flavor of the theme (5/17/06) and installed this version with Drupal 4.7 (final release). I don't know if this download included the recent fix to the search in the header (it looks good as far as I can tell). I'll also post one more issue with formatting and this theme (great work on the theme, by the way... I hope my testing of it helps).

Comments

rkerr’s picture

Yes, your testing does help for sure!

These CSS issues are tricky because I basically just copied the CSS from the main Mollio project, and tried to change Drupal's output to match their markup as much as possible. (And I don't want to get too much into messing with their CSS just yet :)

There is a Google group for Mollio .. maybe you could search that and see if this issue has been mentioned over there.

belio’s picture

I had that too, when using the i18n module, as style-sheets are not loaded; but I fixed it for now by replacing

<link rel="stylesheet" type="text/css" href="<?php print $directory; ?>/ie6_or_less.css" />
<![endif]-->
<script type="text/javascript" src="<?php print $directory; ?>/common.js"></script>

by

<link rel="stylesheet" type="text/css" href="/<?php print $directory; ?>/ie6_or_less.css" />
<![endif]-->
<script type="text/javascript" src="/<?php print $directory; ?>/common.js"></script>

in page.tpl.php, but this most like is not the correct way, as this won't work when drupal is not installed as root of the site.

Anyway, I hope it gives you a hint on how to do it properly ;-) thanks

rkerr’s picture

Hmm... OK I have a fixed version of that but apparently I never checked it in to CVS..
Bascially instead of just $directory, it needs to be $base_url . $directory when Mollio's page.tpl.php prints out the links for Javascript and CSS.

rkerr’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)