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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Above code does not help.
Any other solutions
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got the answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.