BizWay-Footer Area Color and Remove Font Outline

Discussion in 'BizWay WordPress Theme' started by ejpand1, Jul 16, 2014.

  1. ejpand1

    ejpand1 New Member

    Joined:
    Jul 1, 2012
    Messages:
    12
    Likes Received:
    0
    Hello: could you let me know what the .css is to...

    1.) add a color background to the footer area
    2.) remove the white outline around the headings and change font color for the text (headings and paragraph)

    Thank you, appreciate it much.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

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

    Code:
    div.footer-wrapper {
    background: red;
    }
    div.footer_bottom {
    background: red;
    } 
    In place of "red" you can put your color or color code.

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

    Code:
     
    .footer-wrapper .footer_widget h6 {
    text-shadow: none;
    color:black;
    }
    div.footer_widget {
    color: black;
    }
    .footer-wrapper .footer_widget a {
    color: black;
    }
    In place of "black" you can put your color or color code.
     

Share This Page