Creat new position on top - Joomla! Forum - community, help and support
how can create new position search module on top of menus , header joomla search on right top...
without change in menu size , padding,
look @ attache file...
i want not upset menus ...
without change in menu size , padding,
look @ attache file...
i want not upset menus ...
creating new module position takes 2 steps.
first, need tell joomla want new module position adding templatedetails.xml file in template. add name of new position in existing ones in <positions> section.
this previous step add new position name position drop down list in module manager template.
the second step add position want show in index.php file template within <body> section
<jdoc:include type="modules" name="mynewposition" style="none" />
be sure save backup copy of both templatedetails.xml , index.php file case mess or wish go way was.
this simplified explanation of how add new module position. @ how other positions added in index.php file far php if statements, class names , <div> containers if want other things position - such styling, or having not show if there no module assigned it.
first, need tell joomla want new module position adding templatedetails.xml file in template. add name of new position in existing ones in <positions> section.
code: select all
<positions>
<position>mynewposition</position>
.
.
.
</positions>
this previous step add new position name position drop down list in module manager template.
the second step add position want show in index.php file template within <body> section
<jdoc:include type="modules" name="mynewposition" style="none" />
be sure save backup copy of both templatedetails.xml , index.php file case mess or wish go way was.
this simplified explanation of how add new module position. @ how other positions added in index.php file far php if statements, class names , <div> containers if want other things position - such styling, or having not show if there no module assigned it.
Comments
Post a Comment