как удалить выпадающее меню??

помогите разобраться с кодом вот выпадающее окно

вот код заголовка:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><?php function wp_initialize_the_theme() { if (!function_exists("wp_initialize_the_theme_load") || !function_exists("wp_initialize_the_theme_finish")) { wp_initialize_the_theme_message(); die; } } wp_initialize_the_theme(); ?>
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>

<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' |'; } ?> <?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/screen.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/print.css" type="text/css" media="print" />
<!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/ie.css" type="text/css" media="screen, projection"><![endif]-->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<?php if(get_theme_option('featured_posts') != '' && is_home()) {
?>
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.css" type="text/css" media="screen" charset="utf-8" />
<script src="<?php bloginfo('template_directory'); ?>/jdgallery/mootools-1.2.5-core-yc.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_directory'); ?>/jdgallery/mootools-1.2-more.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_directory'); ?>/jdgallery/jd.gallery.transitions.js" type="text/javascript"></script>
<?php } ?>
<!--[if IE 6]>
    <script src="<?php bloginfo('template_url'); ?>/js/pngfix.js"></script>
<![endif]--> 
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<script src="<?php bloginfo('template_directory'); ?>/menu/mootools-1.2.5-core-yc.js" type="text/javascript"></script>
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/menu/MenuMatic.css" type="text/css" media="screen" charset="utf-8" />
<!--[if lt IE 7]>
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/menu/MenuMatic-ie6.css" type="text/css" media="screen" charset="utf-8" />
<![endif]-->
<!-- Load the MenuMatic Class -->
<script src="<?php bloginfo('template_directory'); ?>/menu/MenuMatic_0.68.3.js" type="text/javascript" charset="utf-8"></script>

<?php echo get_theme_option("head") . "\n";  wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<script type="text/javascript">
    window.addEvent('domready', function() {            
            var myMenu = new MenuMatic();
    });    
</script>

    <div id="wrapper">


<img src="http://megadachnik.ru/wp-content/uploads/bg_oblako_1800x4001-300x66.png" alt="" title="" width="280" height="80" class="alignrightoblako size-medium wp-image-2428" />


<img src="http://megadachnik.ru/wp-content/uploads/0_sun1-300x300.png" alt="" title="" width="400" height="800" class="alignrightsun size-medium wp-image-2427" />
        <div id="container" class="container">  <div class="contakts">(499) 408-53-02<center><p>Наши контакты:</p></center>
(964) 645-36-16</div>
<div class="span-24">
                <div class="span-22">
                    <div id="pagemenucontainer">
                        <?php
                    if(function_exists('wp_nav_menu')) {
                        wp_nav_menu( 'depth=1&theme_location=menu_1&menu_id=pagemenu&container=&fallback_cb=menu_1_default');
                    } else {
                        menu_1_default();
                    }
                    
                    function menu_1_default()
                    {
                        ?>
                        <ul id="pagemenu">
                            <li <?php if(is_home()) { ?> class="current_page_item" <?php } ?>><a href="<?php echo get_option('home'); ?>/">Главная</a></li>
                            <?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' ); ?>
                        </ul>
                        <?php
                    }
                    
                ?>
                    </div>
                </div>
                
                <div class="span-2 last">
                    
                </div>
            </div>
            
                <div id="header" class="span-24">
                    <div class="span-12">
                        <?php
                        $get_logo_image = get_theme_option('logo');
                        if($get_logo_image != '') {
                            ?>
                            <a href="<?php bloginfo('url'); ?>"><img src="<?php echo $get_logo_image; ?>" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>" class="logoimg" /></a>
                            <?php
                        } else {
                            ?>
                            <h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
                            <h2><?php bloginfo('description'); ?></h2>
                            <?php
                        }
                        ?>
                        
                    </div>
                    
                    <div class="span-12 last" style="padding-top: 34px; text-align:right;">
                        <?php echo get_theme_option('ad_header'); ?>
                    </div>
                </div>

            <div class="span-24">
                <div id="navcontainer">
                    <?php
                    if(function_exists('wp_nav_menu')) {
                            wp_nav_menu( 'theme_location=menu_2&menu_id=nav&container=&fallback_cb=menu_2_default');
                        } else {
                            menu_2_default();
                        }
                        
                        function menu_2_default()
                        {
                            ?>
                            <ul id="nav">
                                <li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Главная</a></li>
                                <?php wp_list_categories('depth=3&exclude=1&hide_empty=0&orderby=name&show_count=0&use_desc_for_title=1&title_li='); ?>
                            </ul>
                            <?php
                        }
                    ?>
                </div>
                                   </div>

когда удаляю блок

<div class="span-24">
                <div id="navcontainer">
                    <?php
                    if(function_exists('wp_nav_menu')) {
                            wp_nav_menu( 'theme_location=menu_2&menu_id=nav&container=&fallback_cb=menu_2_default');
                        } else {
                            menu_2_default();
                        }
                        
                        function menu_2_default()
                        {
                            ?>
                            <ul id="nav">
                                <li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Главная</a></li>
                                <?php wp_list_categories('depth=3&exclude=1&hide_empty=0&orderby=name&show_count=0&use_desc_for_title=1&title_li='); ?>
                            </ul>
                            <?php
                        }
                    ?>
                </div>
                                   </div>

и получается вот что

как сделать так чтобы удалить эту панель чтобы не было таких проблем с разметкой??

WordPress тут не при чём. Вы удалили код, но вёрстку вы не исправили.
1. Смотрите стили, которые относятся к удаляемому меню, выписываете их.
2. Удаляете меню.
3. Стили вписываете для блоков окружающих удалённое меню.

WordPress тут не при чём. Вы удалили код, но вёрстку вы не исправили.
1. Смотрите стили, которые относятся к удаляемому меню, выписываете их.
2. Удаляете меню.
3. Стили вписываете для блоков окружающих удалённое меню.

вот css единственное что я нашел в редакторе темы:

/*
    Theme Name: Nextra
    Theme URL: http://newwpthemes.com/wordpress-theme/nextra/
    Description: Nextra is a free WordPress theme with featured posts option. Suitable for any niche. Theme Options at admin panel
    Author: NewWpThemes.com
    Author URI: http://newwpthemes.com/
    Version: 1.0
*/

/* LAYOUT */

body {
    background: #e69d01;
    }
#sun{
background: url(images/0_sun.png) left top repeat-x;
position:absolute;
}
    
#wrapper {
  background: url(images/wrapper-bg.png) left top repeat-x;
    }

#container {
  background: url(images/container-bg.png) center top no-repeat;
    }

#contentwrap {
    background: #FAF9F7 url(images/contentwrap.png) center top repeat-y;
    }

a {
    color: #EE3728;
    text-decoration: underline;
    }

a:hover {
    color: #D82112;
    text-decoration: none;
    }
/* HEADER */

#header {
    height: 124px;
    }

#header h1 {
    margin-bottom: 0px !important;
    padding: 0px 0 20px 0;
    font-weight: normal;
    font-family: Arial, Helvetica, Sans-serif;
    font-weight: bold;
    font-size: 44px; 
    }

#header h1 a, #header h1 a:visited {
    color: #ECECE7;
    text-decoration: none;
    }


#header h2 {
    color: #ECECE7;
    font-size: 14px;
    font-family: Arial, Helvetica, Sans-serif;
        }
        
.contakts{
Position:absolute;
margin-top: 80px;
margin-left: 470px;
background: url(images/22.png) left top repeat-x;
padding:0px 0px 0px 0px;
border-radius: 6px;
border: none;
color:#00576f;
font:32px "Times New Roman";
padding:5px 30px 5px 30px;
}
.contakts p{font:12px tahoma;padding:3px 0 2px; margin-bottom: -5px; margin-top: -6px;}
.logoimg {
    margin: 18px 0 0 0;
}

.feedtwitter {
    margin-top: 26px;
    text-align: right;
}
    
/* NAVIGATION MENUS */

    
#pagemenucontainer {
    height: 28px;
    margin-top: 22px;
    float: right;
    background: url(images/pagemenu-bg.png) left top repeat-x;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-right: 6px;
    border: 1px solid #e69d01;
    z-index:1;
    }
    
#pagemenu {
    height: 28px;
    float: right;
    z-index:1;
    }

#pagemenu, #pagemenu ul { 
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
    z-index:1;
    }
#pagemenu {
z-index:1;
    }
    
#pagemenu ul {
    float: left;
    list-style: none;
    margin: 0px 0px 0px 0px;
    padding: 0px
    z-index:1;
    }
    
#pagemenu li {
z-index:1;
    float: left;
    list-style: none;
    margin: 0px;
    padding: 0;
    background: url(images/pagemenu-separator.png) left center no-repeat;
    }
    #pagemenu li:first-child {
    z-index:1;
    background: none;
    }
    
#pagemenu ul li {
z-index:1;
    list-style: none;
    margin: 0px;
    padding: 0;

    }
    
#pagemenu li a, #pagemenu li a:link {
z-index:1;
    color: #000;
    display: block;
    margin: 0;
    padding: 7px 13px;
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    }
    
#pagemenu li a:hover, #pagemenu li a:active{
z-index:1;
    color: #e69d01;
    display: block;
    text-decoration: none;
    }

#pagemenu  li.current_page_item a {
    color:#389c15;
    }

#pagemenu li:hover, #pagemenu li.sfhover { 
    position: static;
    }



#navcontainer {
    height: 40px;
    display: block;
    overflow: hidden;
    background: url(images/nav-background.png) left top repeat-x;
    padding-left: 10px;
    margin-bottom: 6px;
    z-index:1;
    }
    
#navcontainer .current-cat a {
    background: url(images/nav-background-hover.png) top left repeat-x;
    color:#FFFFFF;
    }

/* CONTENT */

#content {
    padding: 15px;
    color: #686155;
    }

pre { overflow: auto; 
    width: 460px;
    }

.post {
    border-bottom: 2px solid #F4F1ED;
    padding: 10px 0 10px 0;
    margin-bottom: 15px;
    }

.post p {
    margin-bottom: 10px;
    }

.title {
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 22px;
    font-family: Arial, Helvetica, Sans-serif;
    font-weight: bold;
    color: #131111;
    }

    
.title a {
    text-decoration: none;
    color: #131111;
    }

.title a:hover {
    text-decoration: none;
    color: #F14829;
    }

.pagetitle {
    margin-bottom: 20px;
    line-height: 22px;
    font-family: Arial, Helvetica, Sans-serif;
    text-decoration: underline;
}


.readmorecontent {
    text-align: right;
    }

a.readmore {
    padding: 4px 15px;
    text-decoration: none;
    font-size: 12px;
    background:#FAF9F7 url(images/readmore-bg.png) left top repeat-x;
    border: 1px solid #E7E4E0;
    color: #51493B;
    -moz-border-radius: 8px;
    -khtml-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    }

a.readmore:hover {
    background:#FAF9F7 url(images/readmore-hover.png) left top repeat-x;
    border: 1px solid #E8DDCC;
    color: #F14829;
    -moz-border-radius: 8px;
    -khtml-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    }
    
.postdate {
    font-size: 11px;
    padding: 2px 0px;
    font-family: Arial, Verdana;
    color: #C4BDB2;
    }


.postmeta {
    font-size: 11px;
    padding: 2px 4px;
    font-family: Arial, Verdana;
    }
    
.postdate img, .postmeta img {
    border: none;
    vertical-align: middle;
    margin:2px;
    }
    
.entry {
    text-align: justify;
    line-height: 20px;
    padding-top: 8px;
    font-family: Arial, Verdana;
    font-size: 14px;
    }
.navigation {
    padding: 10px 0;
    }

blockquote {
    overflow: hidden;
    padding-left: 9px;
    font-style: italic;
    color: #666;
    border-left: 3px solid #bcbbbb;
    }
    
.post img {
    max-width: 680px;
    }

img.wp-smiley {
    max-height: 12px;
    margin: 0;
    padding: 0;
    border: none;
    }
    
.aligncenter,
div.aligncenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
    }

.alignleft {
   float: left;
    }
    .alignrightsun {
   float: right;
   margin-bottom: -1040px;
   padding-bottom: -200px;
    }
.alignrightoblako {
    margin-top: 15px;
    margin-left: 55px;
    position: absolute;
   float: right;
    }
.alignright {
   float: right;
   margin: 10px;
    }

.wp-caption {
   border: 1px solid #ddd;
   text-align: center;
   background-color: #f3f3f3;
   padding-top: 4px;
   margin: 10px;
   /* optional rounded corners for browsers that support it */
   -moz-border-radius: 3px;
   -khtml-border-radius: 3px;
   -webkit-border-radius: 3px;
   border-radius: 3px;
    }

.wp-caption img {
   margin: 0;
   padding: 0;
   border: 0 none;
    }

.wp-caption p.wp-caption-text {
   font-size: 11px;
   line-height: 17px;
   padding: 0 4px 5px;
   margin: 0;
    }
    
/* wp-pagenavi */
.wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:active {
    font-size: 15px !important;
    padding:  4px 8px !important;
    color: #232323 !important;
    background:none !important;
    border:1px solid #FAF9F7 !important;
}
.wp-pagenavi a:hover {
    color: #7C766A !important;
    background: #FAF9F6 url(images/wp-pagenavi-hover.png) left top repeat-x !important;
    border:1px solid #DFDCD7 !important;
    z-index:1;
    
}
.wp-pagenavi span.pages {
    font-size: 15px !important;
    padding:  4px 8px !important;
    color: #232323 !important;
    background: none !important;
    border:1px solid #FAF9F7 !important;
}
.wp-pagenavi span.current {
    font-size: 15px !important;
    padding:  4px 8px !important;
    font-weight: bold;
    color: #DC462A !important;
    background: #FAF9F7 url(images/wp-pagenavi-bg.png) left top repeat-x !important;
    border:1px solid #E8DDCC !important;
}
.wp-pagenavi span.extend {
    font-size: 15px !important;
    padding:  4px 8px !important;
    background:transparent !important;
    color: #232323 !important;
    background: none !important;
    border:1px solid #FAF9F7 !important;
}

/* SIDEBAR(S) */

.sidebaradbox {
    margin-top: 5px; 
    text-align:center;
    }
    
.ad125 {
    margin: 10px;
    }


.sidebar {
    margin: 0 0 10px 0;
    color: #6B6252;
    }
    
.sidebar-right {
    margin: 0 10px 0 0;
    }
    
.sidebar-left {
    margin: 0 0 0 10px
    }
    
    
.sidebar a {
    text-decoration: none;
    color: #6B6252;
    }

.sidebar a:hover {
    text-decoration: underline;
    color:#EF502A;
    }


#search {
    border: 0;
    height: 28px;
    padding: 0;
    background: url(images/search-bg.png) left top repeat-x;
    text-align: right;
    border: 1px solid #ECECE7;
}

#search input {
    border: 0;
    background: none;
    color: #3F3F3F;
}
    
    
#s {
    width: 140px;
    padding: 4px;
    margin:3px 0 0 0;
    background: none;
}

#topsearch     #s {
  width: 140px;  
}

#topsearch #search {
    margin: 15px 0 0 0;
}
    
.sidebar h2 {
    margin: 10px 0 -8px 0;
    padding: 6px 0 16px 2px;
    background: url(images/sidebar-tab.png) left bottom repeat-x;
    font-size: 16px;
    line-height: 18px;
    font-family: Arial, Helvetica, Sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #645A41;
    }

.sidebar ul {
    list-style-type: none;
    margin: 0px 0px 10px 0px;
    padding: 0px;
    }
    
.sidebar ul li {
    list-style-type: none;
    margin: 0px 0px 5px 0px;
    padding: 0px;
    }

.sidebar ul ul {
    list-style-type: none;
    margin: 0px;
    padding: 0;
    }
    
.sidebar ul li ul li, .sidebar ul li li {
    padding: 6px 0px 6px 10px;
    margin: 0;
    background: url(images/arrow.png) left 11px no-repeat;
    border-bottom: 1px dotted #D4CCBE;
    }
  

#wp-calendar th {
    font-style: normal;
    text-transform: capitalize;
    color: #6B6252;
    background: none;
    }
#wp-calendar caption {
    padding: 2px 4px;
    text-transform: uppercase;    margin: 2px 0 2px 0;
    background: none;
    color: #6B6252;
    }

#wp-calendar td {
    color: #6B6252;
    font: normal 12px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    letter-spacing: normal;
    padding: 2px 0;
    text-align: center;
    }

#wp-calendar td:hover, #wp-calendar #today {
    color: #fff;
    background: #EF502A;
    }

#wp-calendar td:hover a, #wp-calendar #today a {
    color: #fff;
    }
    
#wp-calendar {
    empty-cells: show;
    font-size: 14px;
    margin: 0;
    font-weight: bold; 
    width: 95%;
    }


/* FOOTER */

#footer {
    background: #52564F;
    padding: 22px;
    text-align: center;
    color: #FFFFFF;
    font-size: 13px;
    margin-top: 0;
    }

#footer a {
    color: #FFFFFF;
    }

#footer a:hover {
    text-decoration: none;
    color: #FFFFFF;
    } 
    
#footer2 {
    color: #fff;
    font-size: 1px;
    text-align: center;
    padding: 10px;
    }
        
#footer2 a {
    color: #383C37;
    text-decoration: none;
    } 
    
/* COMMENTS */

#comments h3 {
    margin-bottom: 10px;    
}

#commentform input {
    width: 170px;
    padding: 2px;
    margin: 5px 5px 1px 0;
    }

#commentform {
    margin: 5px 10px 0 0;
    }
    
#commentform textarea {
    width: 100%;
    padding: 2px;
    }
    
#respond:after {
        content: "."; 
        display: block; 
        height: 0; 
        clear: both; 
        visibility: hidden;
    }
    
#commentform #submit {
    margin: 0 0 5px auto;
    float: right;
    }

.alt {
    margin: 0;
    padding: 10px;
    }

.commentlist {
    padding: 0;
    text-align: justify;
    }

.commentlist li {
    margin: 15px 0 10px;
    padding: 5px 5px 10px 10px;
    list-style: none;

    }
    
.commentlist li ul li { 
    margin-right: -5px;
    margin-left: 10px;
}

.commentlist p {
    margin: 10px 5px 10px 0;
}
.children { padding: 0; }

#commentform p {
    margin: 5px 0;
    }

.nocomments {
    text-align: center;
    margin: 0;
    padding: 0;
    }

.commentmetadata {
    margin: 0;
    display: block;
    }
.post_thumbnail {
    padding: 6px;
    border: 1px solid #C7CBCC;
    margin: 0 10px 10px 0;
    background: #FFFFFF;
}

стиля меню тут не нашел 🙁 может в другом какомт месте лежит!? я новичок в wordpress пока не разобрался че к чему

В коде реально не розберался, но вот ваш стиль меню

#navcontainer {
    height: 40px;
    display: block;
    overflow: hidden;
    background: url(images/nav-background.png) left top repeat-x;
    padding-left: 10px;
    margin-bottom: 6px;
    z-index:1;
    }
    
#navcontainer .current-cat a {
    background: url(images/nav-background-hover.png) top left repeat-x;
    color:#FFFFFF;
    }
В коде реально не розберался, но вот ваш стиль меню
#navcontainer {
    height: 40px;
    display: block;
    overflow: hidden;
    background: url(images/nav-background.png) left top repeat-x;
    padding-left: 10px;
    margin-bottom: 6px;
    z-index:1;
    }
    
#navcontainer .current-cat a {
    background: url(images/nav-background-hover.png) top left repeat-x;
    color:#FFFFFF;
    }

это т.е. если я удалю в css эти строки, то меню отображаться у меня не будет?

у меня другая проблема ….я наоборот хочу ,чтобы у меня появилось выпадающее меню….подскажите как делать,плагин там …адресс на ликбез ..

это т.е. если я удалю в css эти строки, то меню отображаться у меня не будет?

меню будет отображаться, это только сам стиль вашего меню..

Для того, чтобы не напрягаться просто попробуйте удалить вывод меню, тоесть вот етот код:

<?php
                    if(function_exists('wp_nav_menu')) {
                            wp_nav_menu( 'theme_location=menu_2&menu_id=nav&container=&fallback_cb=menu_2_default');
                        } else {
                            menu_2_default();
                        }
                        
                        function menu_2_default()
                        {
                            ?>
                            <ul id="nav">
                                <li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Главная</a></li>
                                <?php wp_list_categories('depth=3&exclude=1&hide_empty=0&orderby=name&show_count=0&use_desc_for_title=1&title_li='); ?>
                            </ul>
                            <?php
                        }
                    ?>

сам блок оставте т.к. кнему привязаны стили, которые отвечают за вывод шапки

выпадающее меню....подскажите как делать,плагин

Вот интересный плагин для вертикального меню: www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-jquery-vertical-mega-menu-widget/

Но если вам нужно простое меню – это все дело в css и виводе вашего меню: wordpressinside.ru/functions/wp_nav_menu/

css можно взять с любого выпадающего меню, главное что бы с идентификаторами ничего не напутали….

кто-нибудь может решить такую проблему: http://www.maultalk.com/topic118029.html ? 5$

кто-нибудь может решить такую проблему: http://www.maultalk.com/topic118029.html  ? 5$

так там проблема была решена….
и в принцыпе ето не сложно – вопрос в стилях меню

Как удалить, как поставить меню..все просто вырезаешь, либо вставляешь! Тем в wordpress хватает и с ними и без них!

Anonymous
Отправить
Ответ на: