fixed background image & menu background color

Discussion in 'ClassiCraft WordPress Theme' started by garycoles, May 1, 2014.

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

    garycoles New Member

    Joined:
    Mar 13, 2014
    Messages:
    8
    Likes Received:
    0
    Hello where should I place the code to create a fixed background image that will not scroll with the length of my page?

    The light blue background under the search bar when can I change the color? please provide page and line -- thanks!

    I tried to find it but I have not found it. Please help!

    Thanks for help last time. I did not understand at first but after awhile it made sense.


    Gary Coles
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,
    1.
    Firstly,

    Go to Settings > Theme Option > General Settings > Background Image
    and remove background image from there.

    Now,

    Paste this code in Custom CSS
    Settings > Theme Option > Styling Option > Custom CSS

    Code:
      html, body {
    background: url(Enter your image address here) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }

    2.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu .ddsmoothmenu li{
    background:none;
    }
    .menu_wrapper {
    background:red;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  3. garycoles

    garycoles New Member

    Joined:
    Mar 13, 2014
    Messages:
    8
    Likes Received:
    0
    thanks!!!
     
Thread Status:
Not open for further replies.

Share This Page