Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

odoo 13 product page nav_tabs background colour

Subscribe

Get notified when there's activity on this post

This question has been flagged
tabscolorsbackgroundnavOdoo13.0
2 Replies
6554 Views
Avatar
Lucas Laskowski

Hi,

I would like to know how in the name of God change background colour for a description tab? I set page background to black and I would love to have tab to be black too. I managed to figure this one out:

1. Open product page -> inspect element and search for this:

<section class="product_tabs_ept s_tabs">
<div class="container tabs_container_main">
<div class="row s_col_no_bgcolor">
<div class="col-lg-12">
->-><div class="bg-white"> <== <-

2. Change "bg-white" to "bg-black"

Now, how to make it permanent? where the hell is that value stored? I spent good 4h trying to find it on my own in odoo addons folder, but I'm unable to find exact file location that needs to be adjusted. Does anyone know how to edit this tab to have black background? It is annoying AF that I can't simply edit this. Clearly world class leading crm:D

I suppose that I will be able to change default word "Description" colour and background (including this white bar where tab buttons should be) to my preferred colours. 


0
Avatar
Discard
Kevin Cruz

Hello i can help with it, but can you provide more details please?, are you talking about website/shop?, if it is right, are you using a third party theme?, because that class "product_tabs_ept" is not familiar to me, if you're talking about backend dashboard, can you provide the path?, i'm willing to help you.

would be nice if you can share a screenshot, upload it to google driven and send the link

Lucas Laskowski
Author

I was not expecting answer that quick...

my website is live, so i.e. open this page: https://hubfortech.com/shop/product/y7-2019-soft-rubber-back-case-red-667#attr= all black except this damn tab panel. I managed to find product card background and it is black (as you can see under link), but that's about it.

I'm using theme clarico - and despite their 5 star reviews their support suck so badly that I just gave up.

Lucas Laskowski
Author

500 karma to delete my own comment? seriously?

Avatar
Lucas Laskowski
Author Best Answer

Thank you so much to both of you.

Kevin Cruz - your insight that "class "product_tabs_ept" is not familiar to me" pushed me into right direction to look outside addons - I was an idiot and for hours I didn't cop on that my custom addons folder was outside addons folder. You should have heard me cursing that day! :D Based on that information I was able to find right place to edit and I had tab colour changed and set to red/white. I was not able to change actual tab background colour.

And here comes Jainesh Shah - thank you so much for providing that particular line of code. I could find "product_tabs_ept" in product.xml file, but changing bg-white to bg-black in there fixed nothing. Not sure if I had to reinstall whole theme maybe, but changing the same line in page source was doing the trick. I edited style_3.css in theme clarico and voila! success. 

for anyone looking for the same issue:

file to edit: your_odoo_custom_addons_folder/theme_clarico/static/src/scss/style_3.scss
file is pretty well described, so head to "07. Tab Section" and add new line and paste line given by Jainesh:
.product_tabs_ept .bg-white{background-color:#000 !important;}

next scroll a little bit lower to this section:
cursor:pointer;
a
{
    padding:0.6rem 1.5rem;
    (...)
    background: nth($f_color,18); -> add following line directly after this
    color: #ffffff; <---this will change text colour to white in active tab

just a little bit lower, in 
a.active
{
    (...)
background: nth($f_color, 19) <-- this is selected tab background colour. Just play around with number to find colour you like, i.e. 19 is primary theme colour. You can find list of all colours in the very first lines of this file: your_odoo_custom_addons_folder/theme_clarico/static/lib/theme/variables.scss

Thank you guys for the help and I hope this post may help someone in future with the same issue. Theme clarico support requested additional money for this "outside the theme" customisation and I'm strongly against milking customers like this as this was plainly theme customisation that should be included in EUR199+VAT price. Shame on them.

Unfortunately I'm not able to do more than just reply as i have no karma to do anything: I can not comment (minimum of 5 karma) nor I can mark best answer (minimum 5 karma). Have a good day everyone:)

0
Avatar
Discard
Kevin Cruz

Nice to hear you solved it.

sorry for not replaying after i told you "i want to help you", but my email went down so i din't recieve notifications till today.

Avatar
Jainesh Shah(Aktiv Software)
Best Answer

Hello Lucas Laskowski,

You can try finding this "product_tabs_ept" class in the clarico theme folder, as the theme might be inheriting the view, but still if you unable to get the view you can try this with CSS (forcefully giving black color)

If you want to change the background color fro the class under "product_tabs_ept", then in the CSS file you can simply write this

.product_tabs_ept .bg-white{background-color:#000 !important;}

This will change the bg-white color property to black which will come inside this "product_tabs_ept" class, as you specified you are unable to locate the XML, so you can do it with the CSS help.

Thank You!


Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

1
Avatar
Discard
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
Related Posts Replies Views Activity
Background color to one2many field
treeview colors background
Avatar
Avatar
1
Feb 22
10465
Change Odoo theme manually Solved
colors background theme odoo 17.0
Avatar
Avatar
Avatar
2
Apr 25
3817
Why are some Chatter messages shown with a GREEN background and some with a BLUE background? Solved
colors chatter background green blue
Avatar
Avatar
Avatar
2
Mar 25
1689
Line background color in list view Solved
treeview view colors background decorators
Avatar
Avatar
Avatar
Avatar
Avatar
5
Oct 24
7489
Mass Mailing template background image is not showing in email received by user
email background mass_mailing emailtemplate Odoo13.0
Avatar
Avatar
1
Nov 23
4816
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now