Will you plz write your site url?
http://www.13thhour.com.au
I think the line is part of the template?
You mean to say this line check this image http://snag.gy/Xqjn9.jpg.
If you are talking about this line then put
.entry-header {
border: medium none;
}
in to your theme style.css
Thanks. That is the correct line. I tried to insert this code as suggested but it did not seem to remove the line.
.entry-header {
border: medium none;
border-left: 6px solid #497ca7;
margin: 0 0 47px 54px;
padding: 0 30px 0 24px;
}
In theme, style.css * =Content
The reason it’s not doing anything is that the second border statement here is overwriting the new one, you should only have the first:
border: medium none;
border-left: 6px solid #497ca7;
But let’s step back a moment: I strongly recommend that you don’t edit the style.css file in your theme directly, otherwise your changes will be overwritten when the theme is updated.
An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.
As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.
Once you add the code senaom provided above to your child theme or custom CSS area, it will override the code in your theme and should take effect.