我有自定义菜单的背景图片 在英文版本中,它可以工作o.k(这应该是顶层,所以我做了位置:相对)
#custommenu {
background-image: url([[pix:theme|header]]) ;
position:relative;
left:-18px;
top:-8px;
background-repeat: no-repeat;
width: 997px;
height: 57px;
padding: 0;}
在rtl.css中 我无法将图像移动到右侧
.dir-rtl#custommenu {
float:right;
right:-34px;
}
答案 0 :(得分:0)
您好我应删除float:right;
就像这样
.dir-rtl#custommenu {
right:-34px;
}