Viewing 6 replies - 1 through 6 (of 6 total)
  • Hey there stywax,

    How are you doing today?

    For this you’d have to edit your theme header.php. Ideally you’d want to create a child theme and make a copy of header.php in your child theme where you’ll make this changes. By doing this you can avoid this being lost once you update the theme.

    Once there search for for the following line:

    <div id="hd" <?php raindrops_doctype_elements( '', 'role="banner"' ); ?>>

    and place the following below:

    <img class="mylogoimg" src="https://parsival.be/parsivalnew/wp-content/uploads/2015/10/new-parsival-teken.gif">

    I’ve added the class there so we can use CSS to control image size as it is pretty big to be used as a logo.

    You can after add this CSS code to your child theme style.css or in case you’re not going to use it you can use plugins such as this one to add CSS https://www.ads-software.com/plugins/simple-custom-css

    img.mylogoimg {
        width: 150px;
        height: auto;
    }

    Hope this helps and have a great weekend ??

    Cheers,
    Bojan

    Thread Starter stywax

    (@stywax)

    Thx

    the problem is solved ??

    Thread Starter stywax

    (@stywax)

    Euhm still a little problem.

    I passed a url link to the image.

    Now everything is oké such as the place, width, the url link but the image wouldn’t show…

    At the top on the right you ‘see’ there is something but you couldn’t see the image.

    Do you see perhaps what i have done wrong?

    Hey again stywax,

    You didn’t add the code as I suggested above, as the image is not having class so please try adding the following CSS:

    a.logoimg img {
        width: 100px;
        height: auto;
    }

    Once you do image will show, you can add the following as well to make the header banner larger as it will not fit into the current one:

    div#hd {
        min-height: 95px;
    }

    Best regards,
    Bojan

    Thread Starter stywax

    (@stywax)

    Now it works perfectly !

    Thanks ??

    Glad I could help ??

    Cheers,
    Bojan

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Logo next to title’ is closed to new replies.