• Hello – I am trying to insert a new header image (on my site, https://www.thelyonsshare.org). I tried to just upload it as the “featured image”, which didn’t work. I also tried this code in style.css of my child theme:

    #header #mainmenu { margin-top: 0; }

    #header {
    background: url(‘https://www.thelyonsshare.org/wp-content/uploads/2013/04/Lyons_Share_Wellness_Header_High[1].png)
    left bottom repeat-x; }

    The first part was initially there to reduce margin size, but even when I delete that, I still don’t see my image. Can you help me fix the code? Also, what code will I need to remove the existing title and logo (I assume that when I insert my image, you might see the existing title and logo on top of the image)? Thank you so much for your help!
    Megan

Viewing 1 replies (of 1 total)
  • Hi,

    The reason why the background isn’t showing is because the code you’ve included in your css is currently incorrect. Change your css in the child theme from:

    background-image: https://www.thelyonsshare.org/wp-content/uploads/2013/04/Lyons_Share_Wellness_Header_High[1].png;

    to:

    background-image: url('https://www.thelyonsshare.org/wp-content/uploads/2013/04/Lyons_Share_Wellness_Header_High[1].png');

    Also from your custom css plugin remove the following line of code:

    background: none;

    Let me know if you need any more help.

    Afzaal

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: Simple Catch] Changing header image’ is closed to new replies.