change footer background & button color

Discussion in 'SpotMoto WordPress Theme' started by deveshd, Oct 15, 2014.

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

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    How do I change the color of the footer background and the button? See screenshot below:
    Screen Shot 2014-10-15 at 11.15.28 AM.png
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    For button you can set image for background if you set color it looks odd. On theme we use image for button without text .We can set text on button from dashboard.
    And for footer
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer-bottom{
    background:green;
    }
    Set color according to your requirement.
    Thanks & Regards
    Pramod
     
    smith likes this.
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    the footer, color change did not work with this code:

    .footer-bottom{
    background:green;
    }

    OR
    .footer-bottom {
    background: green;
    }

    Also, how do I keep two colours in the footer, like the widget area different color and the copyright area different color backgrounds?
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer-bottom
    {
    background:red !important;
    }
    .footer{
    background:yellow !important;
    }
    This will work and set color/code according to your requirement.
    Thanks & Regards
    Pramod
     
  5. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Thanks!
     
Thread Status:
Not open for further replies.

Share This Page