hallo,
how can i change the position of the logo and main menu?
so the logo should be on the right
and the main menu on the left
just change the position of the logo and main menu!!!
thanks for your help!
kind regards
andi
anyone?
Hi andi,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .logo.bg-logo {
float: right;
right: 0;
left: auto;
}
#top .main_menu {
left: 0;
}
#advanced_menu_toggle {
left: 0;
}
Just as an aside our queue system goes by oldest posted topic to newest so self bumps or self replies just put the topic to the end of our queue which just about never goes beyond 24 hours response.
Regards,
Devin
thanks a lot!
the menu is now on the left side … but also the logo!
the logo not moved to the right!
so now the logo and the menu is on the left!
how can i get the logo to the right?
thanks a lot for your help!
kind regards
andi
this works:
#top .logo {
float: right;
right: 0;
left: auto;
}
it´s fine within all browsers, except: firefox and opera!!!
http://awesomescreenshot.com/0371if3h89
there the logo isn´t on the right side!
thanks for your help!
Hi,
Remove the previous css and add this instead:
#top .logo {
float:right;
left:auto;
}
@media only screen and (min-width:980px) {
#top .logo {
right:-100px;
}
}
@media only screen and (min-width:768px) and (max-width:979px) {
#top .logo {
right:-60px;
}
}
@media only screen and (max-width:767px) {
#top .logo {
right: -100px;
}
}
Thanks,
Nick