I am currently experiencing an issue with the width of a specific gadget. My goal is to have the border-bottom
line of #customheader
span the entire width of any screen size. However, at the moment, the border-bottom
is only the width of the blog itself. How can I extend the border-bottom
without affecting the other elements of the gadget?
You can find my blog at the following URL: . Below is the code for the gadget in question:
<style>
#customheader a {
font-size: 60px;
font-family: lato light, 'cantarell';
color: #737373;
text-transform: uppercase;
font-weight: normal!important;
letter-spacing: 0.07em;
}
#customheader {
margin: 7% 0 2% 0;
padding: 0 0 3.5% 0;
border-bottom: 1px solid #cccccc;
}
#customheader a:hover {
color: #000000!important;
}
</style>
<center>
<div id='customheader'>
<a href='http://www.blankesque.com'>Blankesque</a>
</div>
</center>