Background Not Showing Up

Discussion in 'BlackBird WordPress Theme' started by Eric, Feb 20, 2013.

  1. Eric

    Eric New Member

    Joined:
    Dec 28, 2011
    Messages:
    25
    Likes Received:
    1
    I have 1 problem and 1 question.

    My problem is that even though I'm able to upload a body background image in the Theme Options, the new background doesn't show up on my site. I've uploaded one of the backgrounds included in the Inkthemes background bonus (Brushed Aluminum), but as you can see, my site's background is still the default white:

    http://internetmarketingsb.com

    My question is about how to change the color of main navigation bar. I want to change it to a custom color (the same color as my logo's background). I tried editing the style sheet (style.css) in the theme editor, but was not able to change the color. So I was hoping that you could tell me how to make the main navigation bar a custom color or send me some CSS code that would accomplish that.

    Thanks.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Please download the upgade version of this theme from members area, update your theme.

    This will solve your problem.

    for this issue, paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .menu_wrapper {
    background: #197290;
    }
    This will solve your problem.
     
  3. Eric

    Eric New Member

    Joined:
    Dec 28, 2011
    Messages:
    25
    Likes Received:
    1
    Thank you Piyush, both of my issues were solved.

    I have one more problem though. When I changed my site to the Blackbird theme, a pricing table on one of my pages become kind of broken.

    You can see the table here: http://internetmarketingsb.com/video-packages/#package

    The left hand column dropped down one level when I changed from my old theme to the Blackbird theme. I created the table using this plugin: http://wordpress.org/extend/plugins/pricing-table/

    I contacted their support and received the following advice:

    "Hi have a look at the following code in style.css line 31
    .feature-content { margin-top: 45px; max-width: 100%; overflow: hidden; padding: 0; text-align: center; }
    Change the 45px to something smaller i.e. 2px or what ever you feel is good for your table."

    I tried to follow that advice but could not find the code they describe in the style.css editor. I was wondering whether you could send me some CSS code to fix this problem. I want to move the column on far left of the pricing table up one notch.

    Thanks.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    #shaon-pricing-table .featureTitle span {
    height: 60px;
    line-height: 60px;
    }
     
    #shaon-pricing-table .feature-content {
    margin-top: 0px;
    }
    Adjust the values as per your requirement.
    This will solve your issue.
     
  5. Eric

    Eric New Member

    Joined:
    Dec 28, 2011
    Messages:
    25
    Likes Received:
    1
    Thanks Piyush. That worked perfectly.
     

Share This Page