Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Bob

    (@rfgoetz)

    Try this for CSS OPTION C:

    position:fixed; top: 40; padding:0; z-index: 99999; left: 50%; margin-left: -100px;

    Where -100PX is 1/2 of the size you want.

    Bob

    Thread Starter wchoa

    (@wchoa)

    Thanks Bob,
    That worked for the most part. It gave me a starting point since I was trying to fill the entire white space (Left to right) on the page. I took your suggestion, played around a bit added a width to get what I wanted.
    The final piece of CSS OPTION C I used is:

    position:fixed; top: 40; padding:0; width: 70%; z-index: 99999; left: 50%; margin-left: -500px;

    I appreciate your help. Thank You!

    Thread Starter wchoa

    (@wchoa)

    Bob,

    I tweaked it just a little more to keep the rounded edges on my page, which to me looks a bit better. So the final code is now:

    position:fixed; top: 40; padding:0; width: 67%; z-index: 99999; left: 50%; margin-left: -480px;

    Thanks again!

    Plugin Author Bob

    (@rfgoetz)

    Yes — looks great!

    Glad you were able to get what you needed!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Set Top Bar width’ is closed to new replies.