There is an easy way to get rid of the border around the header.
Here’s how to do it;
![How to remove borders in header how to remove borders in header](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWvBpNnMXgKb3SnbJ4zMqPln5eVwEIk4MwvTLab495wg9_lqafvyoUFjbrLfDtg_nPbKC-yzTe01wNfWrPD28wM1ZPuo9jcPNRpZq33El_jh3zUtJ3bzwhQCLeFKyC9FtbZMeTV1xTpXEv/s320/How+to+remove+borders+in+header.jpg)
On your dashboard select LAYOUT, and then ► EDIT HTML ► and find the following:
#header-wrapper {
width:750px;
margin:0 auto 10px;
border:1px solid #cccccc;
}
#header-inner {
background-position: center;
margin-left: auto;
margin-right: auto;
}
#header {
margin: 5px;
border: 1px solid #cccccc;
text-align: center;
color:#666666;
}
..just change the 1px into 0px in these two lines:
border:1px solid #cccccc; ► border:0px solid #cccccc;
border: 1px solid #cccccc; ► border: 0px solid #cccccc;
No comments:
Post a Comment