9#说的是对的。我的也有同样的问题。见图。全部变成“主页”了。
但不是所有的“个人主页”风格都出现,只是出现在个别的“个人主页”上。
请楼主明察。
409586
刚开始是正常的。
409587
点击日志、相 ...
mhzxking 发表于 2009-2-3 16:23 
不是你没安装好,是这几个个人主页样式的css设置问题,因为其中的menu用的是图片不是文字,所以需要修改变成lz的方法后的css样式,当然稍微麻烦点,为了简单点,可以自己把那段css样式屏蔽掉,换成文字的即可。
修改具体如下所示:- /*
- .tabs_header ul.tabs li.active a,
- .tabs_header ul.tabs li a,
- .tabs_header ul.tabs li.active a span,
- .tabs_header ul.tabs li a span { padding: 0; width: 24px; height: 12px; background-image: url(images/menu.gif); line-height: 200px; overflow: hidden; }
- .tabs_header ul.tabs li.active a span,
- .tabs_header ul.tabs li a span { background: none; display: inline; }
- .tabs_header ul.tabs li.myhome a { background-position: 0 0; }
- .tabs_header ul.tabs li.mydoing a { background-position: 0 -100px; }
- .tabs_header ul.tabs li.myblog a { background-position: 0 -200px; }
- .tabs_header ul.tabs li.myalbum a { background-position: 0 -300px; }
- .tabs_header ul.tabs li.myshare a { background-position: 0 -400px; }
- .tabs_header ul.tabs li.mythread a { background-position: 0 -500px; }
- .tabs_header ul.tabs li.mywall a { background-position: 0 -600px; }
- .tabs_header ul.tabs li.myfriend a { background-position: 0 -700px; }
- .tabs_header ul.tabs li { margin: 10px 30px 0 0; }
- .tabs_header { height: 31px; }*/
- /*替换成如下*/
- .tabs_header{ position: absolute; margin:-40px 0 0 10px; width: 600px; border: none;}
- .tabs_header ul.tabs li a, .tabs_header ul.tabs li a span{ background-image: url(images/tab_bg.gif); color: #FFF;font-weight:bold; }
- .tabs_header ul.tabs li.active a, .tabs_header ul.tabs li.active a span{ background-image: url(images/active_tab_bg.gif); color:red;font-weight:bold; }
复制代码 |