The blocks suddenly are a bit wider that they should be and there is no fill color in them (like on the picture in the atatchment). This does not happen to normal menus I create in Drupal but this happenes to menu-blocks and view-blocks I create.

This happened after an update, I'm not sure if it has something to do with the theme or if there are some other modules messing with my site. Drupal doesn't log anything unusual when I load the pages. Do you know why this might be happening?

CommentFileSizeAuthor
block.png48.43 KBAnonymous (not verified)
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Jeff Burnz’s picture

I will look into it, can you post the markup (the source view) of that page?

Todd Young’s picture

I don't mean to hijack, but I am getting this as well, with

Pixture Reloaded 7.x-3.0-rc1+1-dev

and...

AT Core 7.x-3.1

...which could be a problem in itself, but I figured I'd ask, since this issue seems to have trailed off long ago but was still marked active?

pascalli’s picture

Hi all,

This issue is still active in the latest version.

Thanks again for you precious time and work on this issue.

Cheers

pascalli’s picture

After digging a bit around it appears to be a simple CSS override issue.

picture-reloaded.css on line 589.
#block-system-main .block-content {
padding: 0;
}
color.css on line 164

#header-region .block-inner, #block-system-main .block-inner, #footer .block-inner, #footer .block .block-title {
background: none repeat scroll 0 0 transparent;
}

A quick fix would be to enable (and create) responsive.custom.css file and add the following.

#block-system-main .block-inner, section.panel-pane div.block-inner {
background-color: background: none repeat scroll 0 0 #F2E0C8;
}
// color code #F2E0C8 is an example and needs to be changed according to your theme.
#block-system-main .block-content {
padding: 10px;
}

Bye for now.

Jeff Burnz’s picture

Status: Active » Closed (won't fix)

This version is basically unsupported at this stage, its still there but I can't provide support for these older versions.