• Resolved thiagoalencar

    (@thiagoalencar)


    Hello guys, I want to remove the border arround the main content. Can you help me? I’ve been searching the css that’s handle with this but without sucess.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Michael

    (@wallpaperman)

    Hi, did you try this?

    .main-inner {border: none;}

    Thread Starter thiagoalencar

    (@thiagoalencar)

    Thanks @wallpaperman. I’ve tried now but doesn’t work.

    • This reply was modified 6 years, 7 months ago by thiagoalencar.

    It’s not a border on the sides and on the bottom, but shadow:

    #page .container-inner {
        background: #fff;
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
        box-shadow: 0 1px 1px rgba(0,0,0,.1);
    }

    Install plugin “Custom CSS & JS” and place this custom CSS code:

    #page .container-inner {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    To remove top border, check this code:

    .page-title {
        background: #fff;
        position: relative;
        padding-top: 18px;
        padding-bottom: 17px;
        border-bottom: 1px solid #eee;
        color: #666;
        font-size: 1em;
        font-weight: 600;
        line-height: 1.5rem;
    }

    place this code in “Custom CSS & JS”:

    .page-title {
        border-bottom: none !important;
    }

    Hope this will helps.

    • This reply was modified 6 years, 7 months ago by Mr_Coder.
    Thread Starter thiagoalencar

    (@thiagoalencar)

    That is it @mr_coder . Works!
    Helped me a lot.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove border’ is closed to new replies.