简体   繁体   English

Joomla下拉列表将变成蓝色

[英]Joomla drop down turns listings into color blue

I have a test site in which I have a problem, It's a realty listing site, I have some results and a drop down below them to arrange the amount of results per page, but every time I select any number out of the drop down menu the results turn blue. 我有一个遇到问题的测试站点,这是一个房地产列表站点,我有一些结果,并在它们下面进行下拉以排列每页结果的数量,但是每次我从下拉菜单中选择任何数字时结果变成蓝色。

Please help this is the link: http://realesta-cp68.webjoomla.es/ 请帮助这是链接: http : //realesta-cp68.webjoomla.es/

After the first 8 listings I have the drop down. 在前8个列表之后,我有下拉列表。

when you change the drop down you are setting the opacity of your "rpl_plist_container" div 当您更改下拉列表时,您正在设置“ rpl_plist_container” div的不透明度

in function page_change(post_string) you have: 在函数page_change(post_string)中,您具有:

jQuery("#rpl_plist_container").fadeTo(300,.4);

the second parameter is setting the opacity, if you don't want it you can just use: 第二个参数是设置不透明度,如果您不希望它可以使用:

 jQuery("#rpl_plist_container").fadeTo(300);

more info: http://api.jquery.com/fadeTo/ 更多信息: http : //api.jquery.com/fadeTo/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM