如何让我的左侧社交侧边栏与帖子身体相邻?

时间:2013-11-26 11:47:01

标签: jquery css wordpress

我想把我的左侧边栏放在左侧的柱体旁边,没有任何空间。我希望像网站链接一样:http://digital-photography-school.com/10-signs-might-photo-geek

我已经尝试了很长时间但是没有任何办法。它在我的屏幕和许多屏幕上运行良好,但在大屏幕上出现问题(屏幕大小像24“)。所以,如果有人能帮助我,那对我来说会很棒。

我正在使用wordpress的这个插件:https://www.po.st/get-it。这是我的网站链接,您可以在其中查看问题:http://site4preview.site90.net/wordpress/title-for-post-1-will-go-here-2/。感谢。

我已经使用插件给出了我用作额外代码的代码:

.pw-float-left{
  background:#ffffff;
  padding:10px;
  top:195px !important;
  left:0 !important;
  z-index:99;
  margin-top:0 !important;
 }    

 @media only screen and (min-width:1300px){ // Making problem in larger screens than this */
 .pw-float-left{
  left:7% !important;
  }
} 

1 个答案:

答案 0 :(得分:1)

像user574632所说:

  

将其放在您的页面容器中并为其赋予负值左值

如果您只能更改CSS,请添加:

.pw-float-left{
     background: none;
     margin-left: 50%;
     padding: none;
     top:195px !important;
     z-index:99;
     margin-top:0 !important;
 } 

.pw-widget {
     width: 60px;
     margin-left: -600px; //change this to move left/right
     background-color: #FFF;
     padding: 12px;
}

删除min-width 1300px媒体查询