I've got quite a strange issue that I experience only when testing on Firefox. Tested it on IE and Chrome, works perfectly fine.
All images in blocks are replaced with their "alt" tag. And slideshow shifted to the right. (See screen shots attached.)

Can anyone advise on how to fix this?

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

adolfo425’s picture

I have the same issue with a custom theme. I been looking for a fix. I am using Views Nivo Slider on drupal 7.

I get the image shifted to the right. I also have Broiler Point as a css file.

sashkernel’s picture

Do you have this issue only under Firefox as me, or all other browsers as well?

danpros’s picture

Category: bug » support

Hi,

You can use Firebug to inspect that.

Dan

sashkernel’s picture

I solved my issue with images. One "/" was backwards in the path.
Still having issue with slideshow. Checked margins in CSS, all seem to be fine.
This is only happening with FF

When inspecting element, I found that when setting .slideshow-inner{left: -505px} in style.css moves the slide back to its place. Is there a way to make it only FireFox specific? I just don't want this to screw up in other browsers.

sashkernel’s picture

Status: Active » Closed (works as designed)

Finally resolved.
I was trying to get rid of little blank space between slideshow and main menu. So I raised the slideshow by -3 px.
If you do that, than when rendering page, slideshow is put right after the last menu item. So the more items you have the more to the right it'll be shifted.

Resolved by changing back margin-top to 0px in local.css

#slideshow-wrapper {
margin-top: 0px;
}

#1, hope it'll solve your issue as well.