Tagged: , , , , , ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #23169
    #118798

    Hi,

    What type of header are you using?

    This will probably work. Add this on your custom.css or Quick CSS

    div .logo {
    float: right;
    position: absolute;
    right: 0;
    }

    .main_menu {
    left: 0;
    }

    Regards,

    Ismael

    #118799

    the navigation is left-aligned now!

    the logo is still on the left side – should be right-aligned…

    i use a fixed header with fixed y-dimension:

    #header_main .container, .main_menu ul:first-child > li > a {

    height: 80px !important;

    line-height: 80px !important;

    }

    html.fixed_header #main {

    padding-top: 80px;

    }

    div .logo {

    float: right;

    position: absolute;

    right: 0;

    }

    .main_menu {

    left: 0;

    }

    #118800

    okay, it works now if i change it to “position: relative;”

    but by resizing / making the browser-window smaller (x-dimension), the alignment is changing suddenly to left again (ca. tab-size!)

    is there any other css-extra for this size?

    #118801

    also the logo is not clickable any more.

    #118802

    Hi,

    Please remove the css above and use this instead. This works on my end.

    .logo {
    float: right;
    position: absolute;
    right: 0;
    text-align: right;
    }

    .logo a {
    float: right;
    z-index: 9999;
    }

    .main_menu {
    left: 0;
    }

    Regards,

    Ismael

    #118803

    wow – it works now – thanks, ismael!!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘logo right align ? – rochade ?!’ is closed to new replies.