Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #322929

    Hi there,

    Please check http://www.musketiermusic.com

    I´ve added to custom css (found in older post here) to “center” the menu in the header.

    .main_menu {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
    width: 550px;
    }

    with about 1200px wide dipslay the logo will be “overlayed” by menu items. any idea to format that in a better way?

    THX for your support

    #323501

    Hi!

    Try using this code instead:

    @media only screen and (min-width: 1200px) {
    	.main_menu {
    		left: 0 !important;
    		right: 0 !important;
    		margin: 0 auto;
    		width: 550px;
    		position: absolute;
    	}
    }

    That will apply the code only in 1200px+ width screen sizes.

    Regards,
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.