Change the footer back colour?

Discussion in 'Local Business WordPress Theme' started by deveshd, Apr 17, 2013.

  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    How can I change the colour of the footer background?
    Screen shot 2013-04-17 at 1.18.39 AM.png
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer-wrapper{
    background:red;
    }
    Inplace of "red" put your color code.
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    It works but leave blocks of old color around widget headings. How to fix that? see below.
    Screen shot 2013-04-17 at 2.43.55 AM.png
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer-wrapper .footer h4{
    background:red;
    }
    This will solve your issue.
     
  5. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Ouch, sorry to bug you again... but the stitch lines like ----------- under the heading are gone now? How do I bring them back?
     
  6. Nitesh

    Nitesh Support Staff

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

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

    Code:
    .footer-wrapper .footer h4{
    background-color:red;
    }.footer-wrapper{
    background-color:red;
    }
     

Share This Page