Hey there Stimpdawg
You will need a custom css plugin or a child theme to achieve this safely so that future updates won’t ruin the changes.
When using child theme or a plugin those css codes will overwrite the parent and they should work. I guess the problem is that the code isn’t really overwriting the code.
You can actually do this also if that won’t work:
#header h1, #header h2 {
font-size: 48px;
margin: 5px 10px 0;
padding: 38px 0 123px 0;
background: url(images/header-btm.png) no-repeat center bottom;
text-align: center;
line-height: 0.9;
-webkit-box-shadow: 0 0px 0px #000;
text-shadow: 0 1px 1px #000;
}
#header-desc {
color: #ddd;
padding: 0 10px 35px;
margin: 0 auto 0;
display: block;
max-width: 600px;
text-align: center;
background: transparent url(images/header-desc.png) no-repeat bottom center;
letter-spacing: 1px;
-webkit-box-shadow: 0 0px 0px #000;
text-shadow: 0 1px 1px #000;
}
This is the line that is making that line on chrome ??
Default: -webkit-box-shadow: 0 1px 1px #000;
Modified: -webkit-box-shadow: 0 0px 0px #000;