所以我不是CSS向导或Nivo滑块大师..我在我的一个页面上工作,开始时没有任何东西..但当我试图让它与我的prostores页面一起工作时图像来了然后滑动然后向上和向左移动并为每个幻灯片做它。我假设必须有一些我需要改变的东西......或者其他......但是因为我对CSS不太了解我不知道要改变什么......我只是在这里保留了默认设置..
这是我在测试的地方
http://www.securemycargo.com/servlet/the-template/testnivo/Page
赞赏任何指针
这里是默认的CSS`
.theme-default .nivoSlider {
position:relative;
background:#fff url(loading.gif) no-repeat 50% 50%;
margin-bottom:10px;
-webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
-moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.theme-default .nivoSlider img {
position:absolute;
top:0px;
left:0px;
display:none;
}
.theme-default .nivoSlider a {
border:0;
display:block;
}
.theme-default .nivo-controlNav {
text-align: center;
padding: 20px 0;
}
.theme-default .nivo-controlNav a {
display:inline-block;
width:22px;
height:22px;
background:url(bullets.png) no-repeat;
text-indent:-9999px;
border:0;
margin: 0 2px;
}
.theme-default .nivo-controlNav a.active {
background-position:0 -22px;
}
.theme-default .nivo-directionNav a {
display:block;
width:30px;
height:30px;
background:url(arrows.png) no-repeat;
text-indent:-9999px;
border:0;
opacity: 0;
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out;
}
.theme-default:hover .nivo-directionNav a { opacity: 1; }
.theme-default a.nivo-nextNav {
background-position:-30px 0;
right:15px;
}
.theme-default a.nivo-prevNav {
left:15px;
}
.theme-default .nivo-caption {
font-family: Helvetica, Arial, sans-serif;
}
.theme-default .nivo-caption a {
color:#fff;
border-bottom:1px dotted #fff;
}
.theme-default .nivo-caption a:hover {
color:#fff;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled {
width: 100%;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled a {
width: auto;
height: auto;
background: none;
margin-bottom: 5px;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled img {
display: block;
width: 120px;
height: auto;
}`
然后我拿出了表格。做了同样的事情......我想我需要其中一个 要修改的CSS条目?
答案 0 :(得分:0)
更新:除了布局问题,我认为这是您的主要问题:
GET http://www.securemycargo.com/.../nivo-slider.css 404 (Not Found)
CSS是此类实用程序的关键部分。没有它,溢出不受控制,图像尺寸不正确。我已经通过开发工具将文件放在您的页面http://dq3f8u841c3z3.cloudfront.net/wp-content/plugins/nivo-slider/scripts/nivo-slider/nivo-slider.css中,它解决了您的问题。
至少部分问题是您使用表格进行布局,而且表格不够宽。图像不会在加载时显示,因此浏览器会使其太窄。至少,将表格的宽度设置为100%,让它使用整个主列:
<table width="100%">
<tr>...
请注意,不推荐使用width属性。但是,如果您使用表格进行布局,那么您可能并不在意。如果您碰巧关心,请改用CSS:
<table class="main-col">
<tr>...
<style>
.main-col {width: 100%;}
</style>
更好:完全删除该表。表格用于数据,无论如何这个数据只有一个单元格。