Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #26195
    #129651

    anyone?

    #129652

    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

    #129653

    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

    #129654

    this works:

    #top .logo {

    float: right;

    right: 0;

    left: auto;

    }

    #129655

    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!

    #129656

    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

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘change logo and main menu’ is closed to new replies.