문제

I think i have some css problem.

At fullpage width the slider width is ok.

But at @media screen and (max-width: 980px) the slider is missing on each side.

Any one got a clue?

URL: removed.

도움이 되었습니까?

해결책

In media query @media screen and (max-width: 980px) you are giving width:535px to bx-wrapper. Remove that line & it will work.

다른 팁

Try changing line 79 in your responsive.css

To 600px width.

.bx-wrapper{width:600px !important; margin-left:auto; margin-right:auto;}

The sides are missing because there is a width:535px !important set for the .bx-wrapper in the media query for @media screen and (max-width: 980px). Try overriding this in your style sheet with this

.bx-wrapper{
  width:100% !important;
}

Add this in your style-sheet to the media query @media screen and (max-width: 980px)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top