hello
how can I move the number in list component to where I want.
thanks for your suggestion!
Hello Spark,
I'm afraid the only way is to uncheck Numbered option for a list component and use images with numbers and place them with css where you want.
Evgene
Thanks for your reply.
Could you give me more advises about the image?
Because I use sorting get the top 5 user's score from database,how can I define the image from NO.1 to NO.5?
And where I can import the image?
Thanks for your help!!
Hi Spark,
You can use css to move numbers something like that:
code
ol.ui-listview li.ui-btn:first-child:before{
left: 15px;
top: 25px;
}
/code