Remove back ground image

Discussion in 'Local Business WordPress Theme' started by kencheney, Sep 3, 2015.

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

    kencheney New Member

    Joined:
    Aug 10, 2013
    Messages:
    4
    Likes Received:
    0
    using the local business theme "blue" I want to remove the back ground blue image that goes to a gradient color in the middle. I want it all to be white.

    I only have access to edit css otherwise I would try and replace the image.
    .header {
    background-color: yellow;
    }

    I tried to add custom CSS using the sytle options for the theme and have tried to comment out the the bg in the style.css file.
    .header {
    width:100%;
    //background:url(images/headerbg.png);
    border:solid 1px #064a72;
    margin:0;
    padding:0;
    overflow:hidden;
     
  2. nitin

    nitin Guest

    Hi,

    Greetings from InkThemes,

    It would be our pleasure to serve you.

    First, undo all the changes that you have made till now for this issue.

    Then, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .header {
            background: white !important;
    }
    
    Note:- You can change the color accordingly.

    I have provided this code for replacing only the header's background image. If you want to remove background of any other area, please let me know the section.

    Hope it will resolve your issue

    Thanks & Regards!
    Nitin
    InkThemes.com
     
  3. kencheney

    kencheney New Member

    Joined:
    Aug 10, 2013
    Messages:
    4
    Likes Received:
    0
    Thanks! That worked. I had no idea that !important; was important ;)
     
Thread Status:
Not open for further replies.

Share This Page