How to embed CSS class in custom field?
I just want to display custom field to right side with the css-class [<li class="item item-right">].
Any Css guide would be great!!!!!
I got the answer.
You want to look at javascript, not css.
get some html dev plugin for your browser to see what's going on (to get the id mainly) and try something along those lines for the field's description:
<script language="JavaScript" type="text/javascript"> <!-- document.getElementById('targetid').className += " item item-right"; } // --> </script>
wholly untested code btw. see http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript for more info.
cheers, Jos
Above code does not help.
Any other solutions
What is it ?
It looks like you're new here. Sign in or register to get started.