• Hi,

    With the theme customizr, in the header, I would like to move the logo and the menu : le logo and the menu more on the right like this

    I can play with :
    .row-fluid .span3 {
    width: 23.0769%;
    }
    and
    .row-fluid .span9 {
    width: 74.359%;
    }

    but when I am looking the website on small screen (smartphone) the logo should be centered above the menu but the logo stay on the top left of the screen.

    How could I fix that?

    thanks

Viewing 1 replies (of 1 total)
  • You can use @media queries to make your changes limited to certain screen sizes, e.g.

    @media all and (min-width: 980px) {
    /* your code here */
    }

    You can find more info in the snippet

Viewing 1 replies (of 1 total)
  • The topic ‘Moving the logo and the menu’ is closed to new replies.