2016-06-28 73 views
1

利潤網站的組織。移動視圖錯位

這是鏈接www.notevayaslionel.com

網站是桌面很大但是當你去移動,你可以看到明顯的背景圖像比窗口屏幕更大,你可以橫向滾動。

如何CON我解決這個問題?我不想任何橫向滾動。

這是我的CSS:

/* Parallax Background ==================================================*/ 
#parallax { 
    height:100%; 
    width:100%; 
    top:0; 
    position:fixed; 
    background-image:url(https://trancazos.files.wordpress.com/2016/06/las-redes-sociales-a-messi-no-te-vayas-lio.jpg?w=1024); 
    background-position:center center; 
    background-repeat:no-repeat; 
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover; 
    z-index: -100; 
} 
+0

它是導致寬度擴大到500像素,並且有設置的多個地方的iframe寬度 – Afsar

+0

你好是我試着去設置I幀的寬度,但我不能將其設置爲腳本有插入該iframe的功能,因此我實際上不能編輯它。 –

+0

@TomasAlonsoRehor很棒的網站,請讓它響應。 – bhansa

回答

1

添加到您的風格。它會使你的網站響應:

#centeralign iframe { 
width: 100%; 
max-width: 500px; 
}