Please Help Answer My Question

Discussion in 'BlackBird WordPress Theme' started by neil100, Nov 4, 2013.

  1. neil100

    neil100 Guest

    Joined:
    Sep 13, 2013
    Messages:
    6
    Likes Received:
    0
    Dear Support,

    I see there have been many views on my other support question but no suggestions yet on how I resolve this in the theme. Is this to do with CSS? How do I make the change to make the widgets look part of the theme?

    I would like to change the default widgets styling to match the theme of the menu when the grey option in styles is selected.

    Currently the widgets do not have a header colour, i would like to enable this to grey and white text like the top menu. I would also like to change the font of the widgets for headers and body links to a more desirable fitting font, we can start with arial font for both.

    I also use gravity forms and this too needs styling as the default theme makes it look very plain, how can I make the header and border more interesting and keep with the theme link above?

    Happy to share logon details and URL if you PM me.

    Thanks,
    Neil
     
  2. Gourav

    Gourav Support Staff

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

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

    Code:
    .footer-wrapper{
    background-color: #343434;
    }
    .footer {
    background: #343434;
    }
    .footer p {
    color: #fff;
    font-family: arial;
    }
    .footer .widget_inner .sitelink a{
    font-family:arial;
    color:blue;
    }
    .footer .widget_inner a{
    color:blue;
    font-family:arial;
    }
    .footer .widget_inner{
    color:#fff;
    font-family:arial;
    }
    .footer ul li a{
    color:#fff!important;
    font-family:arial;
    }
    .footer ul li a:hover {
    color: #f8ca23!important;
    }
     

Share This Page