Sticky Header & Make Action Bar Sticky

http://j3t.994.myftpupload.com/

I have a few questions:

1: Can I add a background image, or at least some color, to the sticky header? I like that it resizes to a bit smaller, but compared to the regular menu bar as I have it now, it's very boring.

2: Is there any way to get the action bar to be sticky with the header too? I'd like the contact info to follow the menu down the page as well.

3: Can I center the content in the action bar, instead of left align?

Comments

  • Hello,
    1. You cannot do that with theme options, but you can add it with custom css
    #Top_bar.is-sticky { background:url('')no-repeat center center !important; background-size:cover;}

    The settings depend on what kind of image you want to use, we will help you with further modification.
    Provide us a link to the image.

    2. The action bar cannot be sticky, you can only use the fixed header style in theme options>header. This would add the action bar to be sticky with the menu, and you would have the background image so you could not do step 1.

    3. You can do it with this css
    body #Action_bar .contact_details {
    float: unset;
    display: inline-block;
    width: 100%;
    text-align: center;
    }
Sign In or Register to comment.