如何在Wordpress中的NextGen Gallery幻灯片中更改光标

时间:2013-04-07 08:51:40

标签: jquery css wordpress cursor nextgen-gallery

我整个上午一直试图解决这个问题。我知道如何改变它 -

$('selector').css( 'cursor', 'pointer' );

我的问题是将它应用于NextGen插件的所有js / css文件。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

尝试在你的css文件上使用!important,而不是使用jQuery来改变它。

.selector {cursor:pointer !important;}

使用!important意味着它将忽略已声明的任何其他专有游标。我不知道nextgen插件,但你可以检查谷歌Chrome,Mozilla Firefox甚至IE上的元素类。

https://developers.google.com/chrome-developer-tools/docs/elements

http://css-tricks.com/when-using-important-is-the-right-choice/