Amazing theme, the best I've seen so far, but...
Is there a way to fix this (see attached image)?

thanks

CommentFileSizeAuthor
mess.png155.54 KBcastawaybcn
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

castawaybcn’s picture

Status: Active » Closed (fixed)

Never mind, I just edited "Left Sidebar Width: " in the theme settings and everything is fine now.

I would suggest the developers to increase the default values for both sidebars though. Even if the settings are clear enough.

I should mark this as "users should go through all options before posting silly issues" but no such option exists. Marking as fixed instead.

Sorry for the confusion.

castawaybcn’s picture

Status: Closed (fixed) » Fixed
kashpratik’s picture

this not a big problem ...its a css problem ...check ur css ..

castawaybcn’s picture

are you sure about that? I am not using any custom CSS and I assume the theme's is used

Also, did you read my previous comment? Adjusting the left panel width fixed it anyway.

Corey Smith’s picture

Thanks for solving your own problem. :) You got to it so fast, I couldn't reply.

The default in the theme for the sidebar should be 210 pixels. If it didn't do that for you, then there might be something else going on. If you see this again, please let me know.

I am glad you found the problem and solved it.

castawaybcn’s picture

yep, it's a strange mix of feelings: stupid and satisfied at the same time ;)

And the default values for both sidebars were 25px each. At least in my case. And I just did a simple install on a test site...

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

drupalworlds’s picture

Issue tags: +CSS, +IE, +menu, +zen, +Drupal, +theme, +sidebar, +content, +style, +min-width, +width, +broken, +overlap, +max-width, +artisteer

Hi,

I could solve the problem after modifying/defining the widths for the content and sidebar in the style.css of the theme directory.

I got the theme code made by Artisteer and I had the same problem in IE8.
I have 2 computers, one monitor of which has 1280*768 resolution(notebook) and the other, 1280*720(desktop). Both have wide screen monitors and IE8 webbrowser.

There was no problem in the notebook, however, there was the left side menu's overlaping problem only in the desktop monitor.

I modified the style.css as follows.
-------------------------------------------------------------------------------------------------
/* begin LayoutCell, sidebar1 - to rectify the left sidebar overlapping content*/

.art-content-layout .art-sidebar1
{
max-width:230px;
width: 23%;

}
/* It is needed to define the min-width of content.*/
.art-content-layout .art-content
{
width: 75%;
min-width:500px;

}
.art-content-layout .art-content-width
{
width: 76%;
min-width:510px;

}
--------------------------------------------------------------------------------------------

If you use Zen or other themes, you should try to find the proper classes for the content and the sidebar.
Then you should restrict the min-width of the content and the max-width of the sidebar so that the content and sidebar should not overlap each other resulting in the broken style.

Hope that helps.

Drupalworlds