Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #630124

    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?

    • This topic was modified 8 years, 6 months ago by BlueprintECM. Reason: Added links as examples
    #630739

    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

    #630849

    Hi Yigit,
    I applied this code, but it only affected the first section (#aboutus), not the second (#services).
    Any ideas?
    Thanks,
    Steve

    #630888

    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;”>’

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Inline CSS for table transparency’ is closed to new replies.