How to add full width header image

Discussion in 'BlackBird WordPress Theme' started by eventors, Sep 4, 2013.

  1. eventors

    eventors New Member

    Joined:
    Dec 28, 2011
    Messages:
    10
    Likes Received:
    0
    1. How do I add full width header image above menu
    (instead of logo)
    2. How do I change text box over slider from black to another color
    or transparent?
    3. How do I make the 3 circles, under the slider, bigger diameter?

    Thanks very much!
    --Jeff
     
  2. Gourav

    Gourav Support Staff

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

    1. For your first issue

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

    Code:
    .header{
    background-image:url(Enter Your Image Address Here) !important;
    height:300px;
    background-size:100% 100%;
    background-position:center;
    }
    .header .logo{display:none;}
    
    Adjust height as per your requirements.


    2.For your second issue

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

    Code:
    .flex-caption{
    background:transparent;
    }
    3.For your third issue
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .feature-content-inner .circle img {
    width: 192px;
    height: 188px;
    }
    .feature-content-inner .circle {
    width: 202px;
    height: 198px;
    }
    This will solve your issue.
     

Share This Page