I need to remove the 6 horizontal black lines that show up at:
http://slc.letsbuytraffic.com/
I can go into the builder child theme css file and add the css, I just don't know what to put there.
thanks
Peter Michael answers:
In 'http://slc.letsbuytraffic.com/wp-content/themes/BuilderChild-Default/style.css' replace
.builder-module {
background: #FFFFFF;
margin-bottom: 1.5em;
border-top: .1em solid #777777;
border-bottom: .1em solid #777777;
}
with
.builder-module {
background: #FFFFFF;
margin-bottom: 1.5em;
border:none;
}
at line 135