Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25537

    Pre 1.7 update did not have the divider line in place for colored sections. And it was easier just to place a full width divider to separate sections. Sometimes I put back to back colored sections just to separate content, but do not want the dividers.

    See example below:

    http://i.imgur.com/iAfNqAA.png

    Just looking for CSS to disable the divider being placed in automatically.

    Thanks much guys.

    #127280

    Hi,

    You mean the border lines?

    You can use this on your custom.css or Quick CSS. If I’m correct these are the dividers.

    Bottom Shadow:

    .avia-shadow {
    box-shadow: none;
    }

    Top Border

    .container_wrap {
    border: none;
    }

    Regards,

    Ismael

    #127281

    Hi Ismael,

    Thanks very much.

    It seems the divider still shows.

    see screenshot here: Theres a white line separating the balck and grey.

    #127282

    Hi andyhoodified,

    Can you provide an example on your site? A link and point out the exact area will allow us to inspect the code live and see what is causing the border. It may be something different than what Ismael and I are thinking so seeing it live will quickly sort it out.

    Regards,

    Devin

    #127283

    Hi Devin,

    So there is a black colored section and red colored section.

    Between them is the white line.

    http://eastsideadultedu.zippysites.com/line-problem/

    Thanks much.

    #127284

    Try:

    .container_wrap {
    border: none;
    }

    Or if that effects too much:

    .avia-section.container_wrap {
    border: none;
    }

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to disable auto inputting of a divider for Colored Sections.’ is closed to new replies.