有没有人知道如何改变白色边框,当你点击一个画廊图像在WEEBLY。我知道如何在单击之前更改图库图像的边框颜色。这在css中是这样安排的:
/* Gallery ---------------*/
.galleryCaptionHolderInnerBg {
background:rgba(209,38,38,0.75);
opacity: 1;
}
.galleryImageHolder .galleryCaptionInnerText {
text-transform:uppercase;
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.157);
font-size: 18px;
font-family: 'Source Sans Pro', sans-serif;
margin: 30px auto;
font-weight: 500;
}
.galleryImageHolder {
border-radius: 3px;
z-index: 1;
}
.fullImageGalleryCaption {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}我相信LIghtbox用于弹出图像....下面是出现问题的示例页面:http://stanowicki.weebly.com/zwart--wit.html只需单击一个图像,就会看到丑陋的白色边框
谢谢你的帮助
发布于 2015-01-02 20:34:22
您要查找的类是fancybox-skin,只需尝试覆盖它以放置您想要的颜色,如下所示
.fancybox-skin {
background-color : #000 !importent;
}发布于 2015-01-02 20:46:36
尝尝这个。
.fancybox-skin {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);/*changed*/
border-radius: 4px;
color: #444;
position: relative;
text-shadow: none;
}https://stackoverflow.com/questions/27742207
复制相似问题