阅读:2253回复:3
修改google搜索栏宽度的问题
用stylish修改google搜索栏宽度,代码如下,改后后面怪怪的,不知是哪里的问题。
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document url-prefix("http://www.google.com.hk/search?") { .lst {width: 360px !important ;} } google主页搜索栏已经够宽了,改的是搜索结果页面的宽度。 |
|
1楼#
发布于:2010-09-26 18:21
改成
.lst-td {width: 360px !important ;}试试 |
|
2楼#
发布于:2010-09-26 18:21
|
|
3楼#
发布于:2010-09-26 18:21
加上padding-right: 0px 差不多好了,最终改成了这样
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document url-prefix("http://www.google.com.hk/search?") { .lst {width: 380px !important ;padding-right:2px !important;} .lst-td {padding-right: 0px !important ;} } |
|