Colorbox关闭按钮和标题没有显示

时间:2014-06-17 05:57:23

标签: jquery colorbox

我可以看到标题内容已成功从Web浏览器中读取,而css中的关闭按钮设置也是正确的,因为我可以看到使用Inspect Element加载的control.png文件。 我需要标题和关闭按钮保持在浮动窗口的顶部-20 px。试图更改cboxOverlay的索引,cboxTitle和cboxColose不起作用。

但我看不到标题或关闭按钮。 这是我的代码的一部分:

<head>
    <script>
        $(document).ready(function() {
            //assign the Colorbox event to elements
            $(".feap2d").colorbox({
                inline: true,
                width: "700px"
            });
        });
    </script>
</head>
<body>
    <table class="ap">
        <tr>
            <td width="50%" valign="top" id="iP2D">
                <div class="productn">
                    <div class="vcompare">//Assign title to show as the title in Colorbox <a class="feap2d" href="#feap2d" title="test title">Version compare</a>

                    </div>
                </div>
            </td>
        </tr>
    </table>
    <div style='display:none'>//inline contents for element feap2d
        <div id='feap2d'>[
            <uc1:fP ID="fP" runat="server" />]</div>
    </div>
</body>

我没有足够的声誉,所以我无法向插图画家发布图像问题。

JSFiddle

1 个答案:

答案 0 :(得分:0)

这是你的Css问题

只需将标题css top属性框更改为0

top:0px;

关闭按钮同样存在问题