İyi günler

kırmızı dikdörtgen içerisindeki menüyü siyah işaretlediğim yere nasıl taşıyabilirim


O siyah içerisindeki turuncu kısım sanırım şu aşağıdaki kodlar
}

                    if( $userbox == "true" and $header_user_panel == "1" ) {
                        echo '<div class="user-box">';
                            if( ! is_user_logged_in() ) {
                                echo '<a data-show-youzer-login="true" title="' . esc_html__( 'Login', 'cloux' ) . '">' . esc_html__( 'Login', 'cloux' ) . '</a>';
                                echo '<a href="/kayit-ol" title="' . esc_html__( 'Sign Up', 'cloux' ) . '">' . esc_html__( 'Sign Up', 'cloux' ) . '</a>';
                            } else {
                                $current_user = wp_get_current_user();
                                if( !empty( $current_user->ID ) ) {
                                    $loggined_user_id = $current_user->ID;
                                    echo '<a href="' . esc_url( get_edit_user_link( $loggined_user_id ) ) . '" class="login-links" title="' . esc_html__( 'Profile', 'cloux' ) . '">' . esc_html__( 'Profile', 'cloux' ) . '</a>';
                                    echo '<a href="' . esc_url( wp_logout_url( home_url( '/' ) ) ) . '" class="login-links" title="' . esc_html__( 'Logout', 'cloux' ) . '">' . esc_html__( 'Log Out', 'cloux' ) . '</a>';
                                }
                            }
                        echo '</div>';
                    }