Unable to change the header image

Discussion in 'RoadFighter WordPress Theme' started by kma026, Dec 23, 2013.

Thread Status:
Not open for further replies.
  1. kma026

    kma026 New Member

    Joined:
    Dec 22, 2013
    Messages:
    10
    Likes Received:
    0
    Hi there,

    I posed the following code in Custom CSS, but the header part is showing a white space. I have already check the other thread and my image URL is correct.

    .header_container.not_home{
    background: url('http://www.funntiques.com/wp-content/uploads/fun-antiques-store-front.jpg');
    }

    .header_container.not_home{
    background-size:100% 100%;
    }

    Thank you for your help.

    Regards,
    Char.
     
  2. kma026

    kma026 New Member

    Joined:
    Dec 22, 2013
    Messages:
    10
    Likes Received:
    0
    FYI I looked up the source and somehow there's a \ before the after the image URL but the CSS I entered doesn't have it.

    .header_container.not_home {
    }
    ========================================

     
  3. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Use double quote instead of single for image url.

    Try this code.
    It will work.

    Code:
    .header_container.not_home{
    background: url("http://www.funntiques.com/wp-content/uploads/fun-antiques-store-front.jpg");
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  4. kma026

    kma026 New Member

    Joined:
    Dec 22, 2013
    Messages:
    10
    Likes Received:
    0
    Thank you so much!!
     
Thread Status:
Not open for further replies.

Share This Page