Closed. This question needs details or clarity。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?添加详细信息并通过editing this post阐明问题。
                        
                        5年前关闭。
                                                                                            
                
        
如何移动侧边栏,使其像希伯来语站点中的其余页面一样位于屏幕的左侧?
仅在此页面上,它在右侧显示不正确:
http://goldenhersh.co.il/he/product/%D7%9E%D7%98%D7%9C%D7%99%D7%95%D7%AA-%D7%A7%D7%9C%D7%99%D7%A8-%D7%A1%D7%A7%D7%99%D7%9F-%D7%A9%D7%9C%D7%91-%D7%A8%D7%90%D7%A9%D7%95%D7%9F-%D7%95%D7%A9%D7%A0%D7%99/

最佳答案

如果您更改,它会起作用

#container {
    float: left !important; //float left is wrong here
    width: 76% !important;




 #container {
    float: right !important; //use float right instead
    width: 76% !important;


结果如下


建议您使用Firebug或Chrome开发者工具检查<div id="container">...</div>,以便查看所应用的样式。

关于css - 使用css将侧边栏移到页面的左侧,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26639083/

10-13 04:17