badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Contact Info Bar

#12542

Hi Rich,

Sorry for misunderstanding. So you need to add the background-image for contact info bar. Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

For top info bar only paste below code

#branding .info-bar {
    background-image: url("YOUR-IMAGE-LINK");
    background-position: center center;
    background-size: cover;
}

For footer info bar paste below code

#colophon .info-bar {
    background-image: url("YOUR-IMAGE-LINK");
    background-position: center center;
    background-size: cover;
}

For both top and footer info bar paste below code

.info-bar {
    background-image: url("YOUR-IMAGE-LINK");
    background-position: center center;
    background-size: cover;
}

Note: Replace above image link YOUR-IMAGE-LINK to your own image link.

Thank you!