• Resolved JojjE

    (@jojje)


    Hey! I would like to replace the black line shown under a page title to an image instead, someone who knows how?
    /Jonas

Viewing 2 replies - 1 through 2 (of 2 total)
  • salsaturation

    (@salsaturation)

    @jojje

    I looked at the demo and the CSS for the line is

    .page-header:after, .entry-header:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -200px;
        width: 400px;
        height: 2px;
        background: #24282d;
    }

    so try the following in your child theme or custom css area

    .page-header:after, .entry-header:after {
    background: transparent;
        background-image: url(http://www.linktoyourwebsite.com/youimage.png);
    }

    you might need to adjust the width and height attributes

    Thread Starter JojjE

    (@jojje)

    Thank you for your quick help, it works!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Replace the black line’ is closed to new replies.