0

I've got a problem with bxslider. Everything work just fine except showing images in slider after first loading. They just don't appear. When you refresh the website and wait a while they appear.

The address of website: PC-DATA

josliber
  • 43,891
  • 12
  • 98
  • 133
Fiszix
  • 3
  • 2

1 Answers1

0

Looking at your website code right now when you first load the page the .bx-viewport are using some inline styles. One of these inline styles is setting the height of the container to 0. If you change the height to the size you want it to (in this case I am guessing 460px) then it should show correctly the first time.

.bx-wrapper, .bx-viewport {
    height: 460px !important;
}

Alternatively you can see what others did here. Hope that helps.

Community
  • 1
  • 1
crazymatt
  • 3,266
  • 1
  • 25
  • 41