Viewing 8 replies - 1 through 8 (of 8 total)
  • Will you plz write your site url?

    Thread Starter Sarah Bartsch

    (@sarah-bartsch)

    https://www.13thhour.com.au
    I think the line is part of the template?

    Thread Starter Sarah Bartsch

    (@sarah-bartsch)

    Part of the Header?

    You mean to say this line check this image https://snag.gy/Xqjn9.jpg.
    If you are talking about this line then put

    .entry-header {
    border: medium none;
    }

    in to your theme style.css

    Thread Starter Sarah Bartsch

    (@sarah-bartsch)

    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.

    Thread Starter Sarah Bartsch

    (@sarah-bartsch)

    Thanks for your time!

    You’re very welcome. ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Page Title Grey Line’ is closed to new replies.