更改下拉菜单上的箭头?

时间:2013-11-10 10:22:21

标签: html css

您可以在此处查看我遇到问题的网页示例:

http://demo.easythemepro.com/?themedemo=AnimeLight

在底栏的右侧,您会看到一个选择不同主题的选项。我正在尝试将向下箭头更改为图像。这是我的代码:

background: url("http://www.easythemepro.com/img/arrow-right.png") no-repeat scroll 95% 53% #2B2B2B;

我究竟做错了什么?我的图像似乎没有出现在我的最后......

1 个答案:

答案 0 :(得分:0)

default.css文件中,我看到以下内容(已修改):

.wptdb_jumpbar_select option {
  background: url("http://www.easythemepro.com/img/arrow-right.png") no-repeat scroll 95% 53% #2B2B2B;
}

...但是检查页面时,您想要更改的样式似乎是.wptdb_jumpbar_select

所以你将CSS应用于错误的元素。试试:

.wptdb_jumpbar_select {
  background: url("http://www.easythemepro.com/img/arrow-right.png") no-repeat scroll 95% 53% #2B2B2B;
}