Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Frumph

    (@frumph)

    The style-default.css has the ‘default style’ of Easel, which can be disabled if you wanted to design a fresh look in the Easel Options.

    As for centering the Easel Menubar, the class is .menu it’s inside of #menubar-wrapper.

    So to center what you do is put a “fixed width” on .menu dependent on the width of items you have in it.

    For example, you have 5 links showing, which take up 500px width, you set .menu to 500px;

    .menu { width: 500px; }

    Okay now for the centering part.

    .menu {
        width: 500px;
        margin: 0 auto;
    }
    Thread Starter JohnMichaelC

    (@johnmichaelc)

    Awesome! Thank you so much for getting back to me on this. The coding is slightly different than what I’ve gotten used to in the other WP sites I have and I couldn’t find it. I really appreciate your help! This is one very cool theme too guy.. I’m highly impressed at all of the work you put into it.
    Cheers,
    John

    tried
    .menu {
    width: 500px;
    margin: 0 auto;
    }
    but did not work, got very frustrated trying many times with various codes, to sent the menubar to the right…so tried (.alignright)to see if it goes to the right…

    .menu {
    margin: 8px 0 8px 8px;
    display: inline;
    float: right;
    font-size: 1em;
    letter-spacing: 0.1em;
    width: 800px;
    }
    instead of going to the right, it goes to the center?… but I know it’s not the right way!
    Can guide me to the right path?

    website:makemoneyonlineinthe21stcentury.com

    Seon

    now my second menu bar below is on my left…lol

    i just reverse the 2 menubar position (LOL), so how to make both center…
    Many thanks

    seon

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Centering Menu Text In Easel and Graphics files calls?’ is closed to new replies.