Forums

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

Home Forums CSS Eliminate Container border Reply To: Eliminate Container border

#250260
Paulie_D
Member

It’s not a border…it’s a box-shadow

.home .fl-page {
    -moz-box-shadow: 0 0 5px #9eafbf;
    -webkit-box-shadow: 0 0 5px #9eafbf;
    box-shadow: 0 0 5px #9eafbf;
}

Just use the Developer Tools that come with your browser to inspect the code behind the page.