Great theme. Just a quick error I noticed in the box_cleanslate theme, i.e. it doesn't render tabs properly sometimes.
I'm not sure why, but, when using the simplenews.module the settings page (Admin/newsletter) is supposed to display numerous option tabs..which it does using the default theme. However box_cleanslate doesn't do that for some reason.
A bit of a showstopping error and I spent ages today trying to work out what was wrong with the module...as opposed to the theme.
Hope that saves others some time. Will post back up here if I work out what was wrong.
Incidentally, the tabs appear fine using the box_grey theme.
Dub
Comments
Comment #1
adrinux commentedThat's an odd one. Given that box_cleanslate is a theme variation, and thus only has different CSS. As far as I can tell the only difference in the CSS is that box_cleanslate applies a different colour to the tab text.
Does this happen in all browsers?
Does the module have any CSS of it's own?
Comment #2
Timotheos commentedI've just recently run into this as well. Frustrating when the box_gray works fine but box_cleanslate does not. BTW, I think this is only a problem with IE (not FF). I fixed it by adding this to the css file
#content {
width: 100%;
margin: 0;
padding: 0;
font-size: 1em;
}
I'm not sure this is the best way to go but for some reason this is in box_gray and got changed in box_cleanslate.
Comment #3
Dublin Drupaller commentedWohoo!
that did the trick..nice one, Timotheos
thanks.
Dub