Tagged: inline css
I’m using tables within a Colour Section, and I’d like to decrease the table opacity slightly.
In the text editor, I’ve added the following CSS:
<table style="background: rgba(255, 255, 255, 0.5);">
(see http://www.qacentric.com/#aboutus)
I also tried:
<table style="background-color: rgba(255, 255, 255, 0.5);">
(see http://www.qacentric.com/#services)
Neither are working. Any ideas?
Hey BlueprintECM,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#aboutus tr, #services tr {
background: rgba(255, 255, 255, 0.5);
}
Best regards,
Yigit
Hi Yigit,
I applied this code, but it only affected the first section (#aboutus), not the second (#services).
Any ideas?
Thanks,
Steve
Hi Yigit,
Don’t worry about it. I fixed the services table by using inline CSS:
`<table style=”background-color: rgba(255, 255, 255, 0.5)!important;”>’