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*

Contact Info Bar

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #12493
    Rich
    Member

    How or where in the stylesheet can I add a background image to the contact info bar?

    #12503

    Hi Rich,
    go to dashboard -> appearance -> theme options -> design options -> color options -> top info bar
    From here you can change the color of info bar.
    Thank you!

    #12507
    Rich
    Member

    So I don’t think you read my question. Is it possible to add a background image instead of a solid color on the top info bar? Where in the stylesheet can I add and can you provide the line of code? Thanks.

    Rich

    #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!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.