Skip to Content
Menu
This question has been flagged
1 Reply
6166 Views

Hi, I have a css file, but I can't make the changes apply, where the error may be. probe 2 different ways. thanks
Please appreciate your support.  

I want to add in the header: <header style = "background-color: rgb (241, 77, 12);" > 

(Customize Odoo header background color)

ref: odoo12 

ref2:

I don't have a website installed because I don't need 

file view_frontend.xml
<odoo>
<data>
<template id="mystyle" name="My style" inherit_id="web.assets_frontend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/modul_name/static/src/css/cssfile.css"/>
</xpath>
</template>
</data>
</odoo>

file css
.header {
background-color:rgb(124, 123, 173);
}

add view_frontend.xml in file __manifest__.py

****Another option that you also use without being able to solve it.

file view_frontend.xml
<odoo><data>
<template id="mystyle" name="My style" inherit_id="web.assets_frontend">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/modul_name/static/scss/cssfile.scss"/>
</xpath></template>
</data>
</odoo>

file scss (static\scss\
header {
background-color:rgb(124, 123, 173);
}

add view_frontend.xml in file __manifest__.py

Avatar
Discard
Best Answer

Hello Giancarlo,

please try below code for load your CSS file in Odoo V12

<template id="assets_backend" name="your custom module assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/modul_name/static/src/css/cssfile.css"/>
</xpath>
</template>


Thanks 

Sunny Sheth

Avatar
Discard
Author

hello, make the change to backend as you indicate but I don't see the change reflected. Maybe I am referencing the label in the css file badly, I want to modify the header of the page (purple color) of the user menu section. please any help would appreciate it.The reason I want to modify is because when odoo is displayed on the cell phone, the menu part appears white and the letters are not displayed.

Related Posts Replies Views Activity
3
Nov 23
15302
3
Nov 24
21048
1
Apr 23
4561
2
Dec 22
5495
1
Nov 22
2659