Ребята, как передвинуть меню сверху вниз под большую картинку header. Туда где сейчас форма поиска. Вот текст index.php скажите, что изменить? Код (PHP): <?php defined( '_JEXEC' ) or die( 'Restricted access' ); JPlugin::loadLanguage( 'tpl_SG1' ); define( 'path', dirname(__FILE__) ); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > <head> <jdoc:include type="head" /> <?php $menu_name = $this->params->get("menuName", "topmenu"); $menu_type = $this->params->get("menuType", "splitmenu"); require(path .DS."styleloader.php"); require(path .DS."utils.php"); ?> <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" /> <link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/template.css" type="text/css" /> </head> <body id="page_bg"> <div id="wrapper"> <div id="container"> <div id="header"> <div id="pillmenu"> <?php if($mtype != "module") : echo $mainnav; else: ?> <jdoc:include type="modules" name="user3" /> <?php endif; ?> </div> <div class="logo"> <table cellpadding="0" cellspacing="0"> <tr> <td> <h1><a href="index.php"><?php echo $mainframe->getCfg('sitename') ;?></a></h1> </td> </tr> </table> </div> <div class="clr"></div> <div id="search"><jdoc:include type="modules" name="user4" /></div> <div class="clr"></div> </div> <p> </p> </div> <div id="content"> <?php if($this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div class="content_m"> <?php elseif($this->countModules('left') and !$this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div class="content_m_l"> <?php elseif(!$this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div class="content_m_r"> <?php else: ?> <div class="content_m_full"> <?php endif; ?> <?php if($this->countModules('left') and JRequest::getCmd('layout') != 'form') : ?> <div id="leftcolumn"> <jdoc:include type="modules" name="left" style="rounded" /> <br /> <?php $sg = 'banner'; include "templates.php"; ?> <br /> </div> <?php endif; ?> <?php if($this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="maincolumn"> <?php elseif($this->countModules('left') and !$this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="maincolumn_left"> <?php elseif(!$this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="maincolumn_right"> <?php else: ?> <div id="maincolumn_full"> <?php endif; ?> <div class="nopad"> <jdoc:include type="message" /> <?php if($this->params->get('showComponent')) : ?> <jdoc:include type="component" /> <?php endif; ?> </div> </div> <?php if($this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="rightcolumn"> <jdoc:include type="modules" name="right" style="rounded" /> </div> <?php endif; ?> <div class="clr"></div> <div id="footer"> <div id="sgf"> <p> <jdoc:include type="modules" name="debug" /> </p> </div> </div> </div> </div> </div> </div> </body> </html> Вот вид страницы
для начала правильно оформляй код который вставляешь в сообщение а по твоему вопросу поменяй местами два этих куска кода, т.е. поставь их в тома порядке в котором я тебе их процитировал если у тебя это меню выводится именно в позиции user3 то именно такое расположение поможет тебе перенести меню под картинку
Сделал все как ты сказал. Окно Поиска ушло вверх а меню не опустилось.. Помоги, буду очень благодарен. www.dymansmusic.com
Вот код: Код (PHP): <?php defined( '_JEXEC' ) or die( 'Restricted access' ); JPlugin::loadLanguage( 'tpl_SG1' ); define( 'path', dirname(__FILE__) ); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > <head> <jdoc:include type="head" /> <?php $menu_name = $this->params->get("menuName", "topmenu"); $menu_type = $this->params->get("menuType", "splitmenu"); require(path .DS."styleloader.php"); require(path .DS."utils.php"); ?> <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" /> <link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/template.css" type="text/css" /> </head> <body id="page_bg"> <div id="wrapper"> <div id="container"> <div id="header"> <div id="pillmenu"> <div class="logo"> <table cellpadding="0" cellspacing="0"> <tr> <td> <h1><a href="index.php"><?php echo $mainframe->getCfg('sitename') ;?></a></h1> </td> </tr> </table> </div> <?php if($mtype != "module") : echo $mainnav; else: ?> <jdoc:include type="modules" name="user3" /> <?php endif; ?> </div> <div class="clr"></div> <div id="search"><jdoc:include type="modules" name="user4" /></div> <div class="clr"></div> </div> <p> </p> </div> <div id="content"> <?php if($this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div class="content_m"> <?php elseif($this->countModules('left') and !$this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div class="content_m_l"> <?php elseif(!$this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div class="content_m_r"> <?php else: ?> <div class="content_m_full"> <?php endif; ?> <?php if($this->countModules('left') and JRequest::getCmd('layout') != 'form') : ?> <div id="leftcolumn"> <jdoc:include type="modules" name="left" style="rounded" /> <br /> <?php $sg = 'banner'; include "templates.php"; ?> <br /> </div> <?php endif; ?> <?php if($this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="maincolumn"> <?php elseif($this->countModules('left') and !$this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="maincolumn_left"> <?php elseif(!$this->countModules('left') and $this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="maincolumn_right"> <?php else: ?> <div id="maincolumn_full"> <?php endif; ?> <div class="nopad"> <jdoc:include type="message" /> <?php if($this->params->get('showComponent')) : ?> <jdoc:include type="component" /> <?php endif; ?> </div> </div> <?php if($this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?> <div id="rightcolumn"> <jdoc:include type="modules" name="right" style="rounded" /> </div> <?php endif; ?> <div class="clr"></div> <div id="footer"> <div id="sgf"> <p> <jdoc:include type="modules" name="debug" /> </p> </div> </div> </div> </div> </div> </div> </body> </html> ______________ Большое спасибо.
шаблон в студию, целиком со всеми картинками которые там внутри находятся, запакуй папку шаблона и прикрепи к следующему сообщению, надо ручёнками потрогать
Вот так и надо было сразу делать. Во вложении поправленный index.php и template.css шаблона. Замени свои на те что во вложении.Только не забудь сначала свои сохранить отдельно на всякий случай.
Е..мое...Спасибо Кентик...Я счаслив.. Всегда готов помочь чем надо. Есть сервера в Америке - так на приметку..живу в Нью-Йорке...
Новый вопрос : как сделать чтобы меню было каскадным? что -то я играюсь в админке и у меня не получается добавить подразделы... Например наводишь мышкой на меню музыка и открываются разделы: Скрипка, баян, ударные...и т.д. Спасибо