图像/横幅未显示在手机中

时间:2018-03-25 15:43:45

标签: css

我的编码知识几乎没有,但我已经使用Joomla和预设模板等了。但是现在我首先击中了砖墙头。虽然两个横幅(右侧和底部)在台式机和平板电脑上正确显示,但手机上只显示底部横幅。

这是网站:http://www.chokladsajten.com

如何在较小的屏幕上显示两者? (如果他们也有回应,那么奖金当然是。)任何帮助或想法都会受到赞赏!

Custom.css:

@font-face {
font-family: 'DroidSerifBoldItalic';
src: url('../fonts/DroidSerif-BoldItalic-webfont.eot');
src: url('../fonts/DroidSerif-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
     url('../fonts/DroidSerif-BoldItalic-webfont.woff') format('woff'),
     url('../fonts/DroidSerif-BoldItalic-webfont.ttf') format('truetype'),
     url('../fonts/DroidSerif-BoldItalic-webfont.svg#DroidSerifBoldItalic') format('svg');
font-weight: normal;
font-style: normal;
}

/* Logo */
.custom-logo {
width: 104px;
height: 70px;
background-image: url(../../../images/yootheme/logo.png);
background-position: 0 0;
background-repeat: no-repeat;
background-size: contain;
}

/* Only Phones */
@media (max-width: 767px) {
#header-responsive .logo { margin-bottom: 10px; }
}

/* Parallax Effect */
.box-parallax { background-image: 
url(../../../images/yootheme/demo/teaser/home_teaser_default.jpg); }
.box-parallax h1 { font-family: "DroidSerifBoldItalic", "TimesNewRoman", 
"serif"; }

/* Frontpage Title */
.bigger-title {
margin-top: 0;
margin-bottom: 10px;
font-size: 24px;
line-height: 24px;
}

/* Frontpage List Line */
ul.line.frontpage > li {
margin-top: 30px;
padding-top: 30px;
}

ul.line.frontpage > li:first-child {
margin-top: 0;
padding-top: 0;
}


/* Only Tablets (Portrait) */
@media (min-width: 768px) and (max-width: 959px) {
.frontpage-teaser { height: 280px; }
.frontpage-teaser h2 {
    margin-bottom: 0;
    line-height: 75px;
    font-size: 68px;
}
.frontpage-teaser h4 {
    line-height: 28px;
    font-size: 23px;
}
}

/* only phones */
@media (max-width: 767px) {
.frontpage-teaser { height: 150px; }
.frontpage-teaser h2 {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 50px;
    font-size: 40px;
}
.frontpage-teaser h4 {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
}
}

#banner {  
position: absolute;  
top: 0;  
right: -230px;  
} 

#footer {  
position: center;
bottom: 30px;
}    
} 

1 个答案:

答案 0 :(得分:0)

您可以为 1220px 断点指定自定义样式,如下所示:

@media (max-width: 1220px) {
  #banner {
    display: block;
    position: static;
    margin-top: 1.5em;
    text-align: center;
  }

  .bannerItem img {
    width: 100%;
    height: 150px;
  }
}

在您当前的版本中,对于此断点, #banner 具有属性display: none;,因此一旦窗口宽度超过1220px,它就会消失