Forum Replies Created

Viewing 1 replies (of 1 total)
  • I am not sure if I get your question, but if it is to get a proper dropdown menu in the main nav as item at the far right, for all languages, using means your used theme, I used these on /wp-admin/options-general.php?page=MslsAdmin:

    before list: <li id="sprache">Sprache<ul>
    after list: </ul>
    before item: <li>
    after item: </li>

    The key for me was ‘Sprache’ as text to make the dropdown working and being visible. ‘Sprache’ is German for language. On the respective pages of the MslsMenu plugin of other languages in my WP multisite installation, I use the respective word for ‘Sprache’.

    CSS for #sprache, but partly depending on my used theme; see yg-lounge.de, which is just temporary for testing purposes of WPs multiside feature; later it is supposed to be on nachfolge-in-deutschland.de, which is currently being redesigned:

    li#sprache {
    	display: block;
    	line-height: 70px;
    	margin-left: 70px;
    }
    
    li#sprache ul {
    	background-color: rgba( 0, 0, 0, .3 );
    }
    
    li#sprache ul a:hover {
    	background-color: inherit;
    }

    Best regards, Sebastian

Viewing 1 replies (of 1 total)