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.
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
Hi Ismael,
Thanks very much.
It seems the divider still shows.
see screenshot here: Theres a white line separating the balck and grey.
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
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.
Try:
.container_wrap {
border: none;
}
Or if that effects too much:
.avia-section.container_wrap {
border: none;
}