WordPress 侧边栏显示在内容下方

发布于 2024-08-21 13:11:21 字数 273 浏览 3 评论 0原文

我正在使用一个名为 Zina 的程序运行最新的 WordPress 版本。我打开一个选项以在 Zina 页面上显示侧边栏,但它没有显示在右侧,而是显示在内容下方。知道为什么会这样吗?

这是页面: http://www.mixtapejerks.com/wordpress/?page_id=3谢谢

乔丹

I am running the latest wordpress version with a program called Zina. I turn an option on to display the sidebar on the Zina page, but instead of on the right it shows below the content. Any idea why this might be?

Here is the page: http://www.mixtapejerks.com/wordpress/?page_id=3

Thanks!

MJ

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

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

发布评论

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

评论(2

倒数 2024-08-28 13:11:21

我认为这更多的是 CSS 问题。
在你的页面上,包含整个 zina 信息的 Zina div 占据了整个页面,

你可以将其添加到你的 style.css 文件中

#zina { width:600px; float:left; }
#sidebar { 
   border-left:1px solid #CCCCCC;
   float:right;
   padding:10px;
   width:300px;
}

,然后一旦你加载页面,侧边栏应该浮动到页面的右侧和左侧吉娜内容?虽然你可能不得不搞乱才能让它恰到好处..

即: 替代文字

I would reckon this is more of a CSS issue than anything else..
on your page the Zina div which encompasses the entire zina information is taken up the entire page,

you could add this to your style.css file

#zina { width:600px; float:left; }
#sidebar { 
   border-left:1px solid #CCCCCC;
   float:right;
   padding:10px;
   width:300px;
}

then once you load the page the sidebar should float to the right of the page and the left for the zina content? although you may have to mess about to get it just right..

ie: alt text

迷爱 2024-08-28 13:11:21

我曾经遇到过这个问题,

我想我最初得到的答案是链接中的长地址或太大的图像。图像大小通常在 theme_whatever 中指定。

如今,使用最新版本,我们不会遇到此类问题,因为我们现在使用(当它工作时)具有三种不同大小的媒体文件系统。

当然,您现在可以在后台决定尺寸。

HTH。

I used to suffer this,

I think I got the answer originally that its long address' in links or too big an image. Images sizes are usually specified in theme_whatever.

These days with the latest versions we don't get such problems as we now use (when it works) the media file system where we have three different sizes.

Of course in the backend you can decide what size now.

HTH.

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