Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
17186 Представления

how to include and use css in a module using odoo 9.0

Аватар
Отменить
Лучший ответ

To use css in odoo create a folder static->src->css-> then create file_name.css.

and in the xml,

<?xml version="1.0" encoding="utf-8"?>
<openerp>
 <data>
     <template id="assets_backend" name="project assets" inherit_id="web.assets_backend">
            <xpath expr="." position="inside">
                 <link rel="stylesheet" href="/field_highlight/static/src/css/field_name.css"/>
</xpath>
 </template>
 </data>
</openerp>
Аватар
Отменить

can you pls update it for Odoo 16, sir?

What about Odoo 16?

Лучший ответ



If your css file is for website, inherit   web.assets_frontend. or inherit web.assets_backend

<template id="assets_frontend" inherit_id="web.assets_frontend">
<xpath expr="." position="inside">
 <link rel="stylesheet" href="/your_module/static/src/css/sheet.css"/>
 </xpath>
</template>


You can watch on Youtube.

     https://www.youtube.com/ how to add css file to odoo 10

All the best ! 



Аватар
Отменить
Related Posts Ответы Просмотры Активность
5
нояб. 24
46791
1
апр. 20
9987
1
июл. 24
1906
1
июл. 24
1922
0
сент. 23
1851