Forums

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

Home Forums CSS Eliminate Container border

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #250255
    triplebit
    Participant

    Here is my site:
    http://triplebit.com/lili
    I have a border arround the content area.
    Any idea whats the css code to eliminate it?
    Thx

    #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.

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