Hi, how can I correct the alignment issue shown here – http://screencast.com/t/k4crWYDufAj
so that the number and ( ) will show OK and not messed up as they are now?
Thanks.
Hi!
Please add following code to Quick CSS
mark.count {
float: right;
}
Best regards,
Yigit
That worked great, thanks.
How can I add a space between the category name and the number? – http://screencast.com/t/3ihAHZO7RS
Hey!
Add margin-left to it:
mark.count {
float: right;
margin-left: 10px;
}
Best regards,
Josue
Thanks!