1

所以我不是 CSS 向导或 Nivo 滑块大师。我在我的一个页面上开始工作,但开始时没有任何内容。但是当我尝试让它与我的 prostores 页面一起工作时,图像出现了,但是滑动然后向上和向左移动并为每张幻灯片执行此操作。我认为必须有一些我需要更改的 CSS.. 或其他东西.. 但是由于我对 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 条目之一?

4

1 回答 1

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>

更好:完全删除该表。表格是用于数据的,无论如何,这个表格中只有一个单元格。

于 2013-09-24T01:09:06.980 回答