是否可以更改点赞页面后出现的 Facebook 框的位置?
点赞按钮工作正常,推荐工作正常,但有一个问题:点赞按钮位于页面的右侧(这是预期的),但是当单击该按钮时,它会打开一个超出了边界的框浏览器,在右侧。 示例(我戴着圣诞老人的帽子作为一个可疑的奖励):
我尝试使用 css 控制位置,没有成功。我该如何继续?
长话短说 我需要将推荐框放在左侧,而不是像现在这样放在右侧。
谢谢你!
The like button works fine, the recommendation works fine, but there's an issue: the like button is positioned on the right side of the page (which is intended), but when the button is clicked, it opens a box that exceeds the boundaries of the browser, to the right.
Example (with me in the Santa's hat as a doubtful bonus):
I've tried controlling the position using css, with no success. How can i proceed?
TL;DR
I need that recommendation box on the left, not on the right as it is now.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题出在css上。尝试使用 firebug 检查元素,您可以实时更改属性以查看哪些元素让您头疼。
(已编辑)
侧边栏容器为
position:absolute
,并具有right:0
。这就是你的问题。因此,如果您输入
left:0
而不是right:0
,您将看到对面的栏。Your problem is in the css. Try using firebug to inspect the elements, you can change properties live to see which ones are the ones giving you the headache.
(edited)
The sidebar container is
position:absolute
, and hasright:0
. There's your problem.So, if you put
left:0
instead ofright:0
you'll see the bar in the opposite side.