在 WordPress 中向右浮动

发布于 2024-11-05 07:43:35 字数 272 浏览 0 评论 0 原文

我有一个 WordPress 网站,内容区域宽 960 像素。我有一个滑出面板,我已将其编码到网站中,但是当我将其向右浮动时,它只会转到 960px 内容区域的右侧。如何将其放置在内容区域之外的浏览器窗口的右侧。建议...想法?

此问题已得到纠正

我的新问题是滑出面板滑出时位于页面内容的后面。

这是滑出面板的 css

CSS的链接

I have a wordpress site where the content area is 960px wide. I have a slide out panel that i have coded into the site but when i float it right it only goes to the right of the 960px content area. How do i get it to the right hand side of the browser window outside of the content area. Sugestions...ideas?

This has been corrected

My new issue is that my slide out panel is behind my pages content when it slides out.

here is a link to the css for the slide out panel

CSS

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜光 2024-11-12 07:43:35

尝试

.my-slide-panel {
    position:absolute;
    right:-200px; /* change 200 to whatever your actual panel size  */
    top:0;

}   

确保.my-slide-panel位于将position定义为相对绝对的容器中。

Try

.my-slide-panel {
    position:absolute;
    right:-200px; /* change 200 to whatever your actual panel size  */
    top:0;

}   

Make sure that .my-slide-panel is in container that has position defined as relative or absolute.

表情可笑 2024-11-12 07:43:35

使用固定或绝对位置...

尝试

.class{
    position:absolute;
    right:0px;
} 

use fixed or absolute position...

try

.class{
    position:absolute;
    right:0px;
} 
伏妖词 2024-11-12 07:43:35

对于内容后面的浮动元素,请尝试更高的 Z-index(如上所述),但要注意,如果内容是 Flash,则在调用 Flash 时需要添加参数:

yourSWFObject.addParam("wmode", "transparent");

参见 http://www.ozzu.com/website-design-forum/placing-div-over-flash-t25572.html 进行讨论。

In regards to the floated element behind your content, try a higher Z-index (as mentioned above), but be aware that if the content is Flash, you need to add a parameter when calling the flash:

yourSWFObject.addParam("wmode", "transparent");

See http://www.ozzu.com/website-design-forum/placing-div-over-flash-t25572.html for a discussion on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文