Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Need to make a box transparent

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #246210
    danielc2384
    Participant

    Hi guys. On – I need to make the dark blue navy box (welcome to text sits on top) transparent so the city behind show. Anyone know a css code I can add to make this transparent? Thanks.

    #246212
    Shikkediel
    Participant

    This would be my best guess:

    .col-sm-6.column-bg-color {
    background-color: transparent;
    }
    

    Make sure to place it after the inline style that is on the page though or otherwise use an additional important! after the rule.

    It doesn’t look very readable when the background is removed though.

    #246214
    deb
    Participant

    .column-bg-color { background: rgba(0,18,73,0.75) !important }

    // Here rgb(0,18,73) indicate the color #001249 and a defines alpha transparency. 0.75 means 75% of that color, you can adjust it according to your requirement.

    #246223
    danielc2384
    Participant

    Thanks it worked! :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.