Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

How to remove 6 narrow black lines WordPress

  • SOLVED

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

Answers (1)

2011-03-09

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