python - How to modify css in OpenERP 7? -


here requirement.i created worker registration screen.its shows below

enter image description here

i need change align , set epf no field after employer no field(with no label).

here shows code in view.xml

<field name="employer_no" style="width: 30%%" /> <field name="epf_no" style="width: 30%%" class="bpl_worker_epf_no" /> 

i tried css file.but not affected field.its changed field's label color.

.bpl_worker_epf_no {     color: blue;     top: 255px;     left: 45px } 

please me sort out issue.when tried nolabel="1" messed layout , fields arranged incorrect pattern.then please me sort issue

thanks

i know it's bit late, have done like:

<label for="field_b"/> <div>    <field name="field_a" class="oe_inline"/>    <field name="field_b" class="oe_inline"/> </div> 

and you'll desire output.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -