Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
5982 Tampilan

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. 


Avatar
Buang

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

Penulis

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.

Penulis

500 karma to delete my own comment? seriously?

Penulis Jawaban Terbai

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:)

Avatar
Buang

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.

Jawaban Terbai

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

   

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
1
Feb 22
9539
2
Apr 25
2629
2
Mar 25
1083
5
Okt 24
5229
1
Nov 23
4083