I want to resize it with width of 120 px, how can I do it?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
2
Replies
3406
Views
Create a custom css with the following and add it to the web.assets_frontend by extending it.
header .navbar-brand.logo img {
width: 120px;
}
Hi,
You can also use the following method
In the website editor you can click on customize theme and select SCSS(CSS) from the dropdown. Add the following code in that css file.
.navbar-brand.logo img {
width: 120px !important;
}
Regards
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up