3 issues

charliebrown

New Member
1. {$screenshot_path}.png works on stats details page but it doesn't display anything on rate_form.html (rating subpage), how can I get it to work?

2. "newest members" plugin links are blank on /join/ subpage, why is that so?

3. how do I modify css of the {$categories_menu} item in join_form.html?
 

Mark

Administrator
Staff member
1) rate_form is part of the ancient review system that is deprecated an is not supported, you would need to add a hook location, and create a plugin.
2) unable to reproduce on any of my lists - http://www.aatoplist.com/?a=join
3) add your css to user.css in your skin
Code:
#join_category {
border: 1px solid red;
}
#join_category option {
background: #000;
}
 
Top