• Resolved batawdc

    (@batawdc)


    On this page, the NavBar of Memphis Docs appears vertically, but it should be horizontal. Can you fix it?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author bhaldie

    (@bhaldie)

    you need to add this line somewhere in your themes css or better off inline:

    
    flex-direction: row !important;
    

    I figured that above piece of element style is already defined from mdocs styles. But there is bootstrap default style has overwritten automatically.
    flex-direction: column;
    I needed to set implicitly set below:

    
    nav.mdocs-navbar-default div.container-fluid {
    	flex-wrap: unset !important;
    }
    
    Plugin Author bhaldie

    (@bhaldie)

    thanks for the fix ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘NavBar style fixing’ is closed to new replies.