-
AuthorPosts
-
July 15, 2013 at 7:26 am #26195
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
July 15, 2013 at 9:21 am #129651anyone?
July 16, 2013 at 5:03 am #129652Hi 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
July 16, 2013 at 6:36 am #129653thanks 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
July 16, 2013 at 6:43 am #129654this works:
#top .logo {
float: right;
right: 0;
left: auto;
}
July 16, 2013 at 6:48 am #129655it´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!
July 17, 2013 at 11:58 am #129656Hi,
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
-
AuthorPosts
- The topic ‘change logo and main menu’ is closed to new replies.
