• Hi guys, I want to keep the full width of my box layout with canvas theme just on the right side of nav.

    using:

    @media only screen and (min-width: 768px) {
    	#navigation {
    		float: right !important;
    		width: auto !important;
    		clear: none;
    		top: 65px;
    		max-width: 600px;
    	}
    }

    website : https://thenimbuslab.com/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The social and nav divs are both float right, this means they stack up from the right, not both go to the rightmost edge. You need to introduce a clear between the social and nav divs, or try this:

    #navigation {clear:right; margin-top:-40px}

    Thread Starter CRAKZOR

    (@crakzor)

    I love you, Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘menu nav right of logo keep full width’ is closed to new replies.