my site http://currentgent.com has a header with a dark color and I would like to know how to remove the two outside grayish lines that go through the header
1 Answers
Hello Dan !
To remove the border on the header of the DW Focus theme, you can add the following code to the Header Code (Dashboard > Appearance > Customize > General Setting)
<style>
.container {
border: none;
}
#main .container {
border-left: 1px solid #DDDDDD;
border-right: 1px solid #DDDDDD;
}
.site-footer .container {
border-left: 1px solid #DDDDDD;
border-right: 1px solid #DDDDDD;
}
</style>
Hope this helps !
Please login or Register to submit your answer