logo right align ?
nav left?
any css for this??
thanks
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
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;
}
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?
also the logo is not clickable any more.
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
wow – it works now – thanks, ismael!!